Skip to main content
GET
/
tools
/
{tool_id}
Get Tool by ID
curl --request GET \
  --url https://api.danubeai.com/v1/tools/{tool_id} \
  --header 'danube-api-key: <api-key>'
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "service_id": "<string>",
  "parameters": {},
  "status": "active",
  "tags": [
    "<string>"
  ]
}
Retrieve detailed information about a specific tool by its unique identifier.

Example

curl -X GET "https://api.danubeai.com/v1/tools/abc123" \
  -H "danube-api-key: YOUR_API_KEY"

Authorizations

danube-api-key
string
header
required

Your Danube API key

Path Parameters

tool_id
string
required

The unique identifier 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