Skip to main content
GET
/
tools
/
name
/
{tool_name}
Get Tool by Name
curl --request GET \
  --url https://api.danubeai.com/v1/tools/name/{tool_name} \
  --header 'danube-api-key: <api-key>'
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "service_id": "<string>",
  "parameters": {},
  "status": "active",
  "tags": [
    "<string>"
  ]
}
Look up a tool by its exact name. Useful when you know the tool name but not the ID.

Example

curl -X GET "https://api.danubeai.com/v1/tools/name/Gmail%20-%20Send%20Email" \
  -H "danube-api-key: YOUR_API_KEY"

Authorizations

danube-api-key
string
header
required

Your Danube API key

Path Parameters

tool_name
string
required

The name of the tool

Response

Tool details

id
string

Unique identifier for the tool

name
string

Display name of the tool

description
string

What the tool does

service_id
string

ID of the service this tool belongs to

parameters
object

JSON Schema defining the tool's input parameters

status
enum<string>

Whether the tool is currently active

Available options:
active,
inactive
tags
string[]

Tags for categorizing the tool