Skip to main content
GET
/
tools
List All Tools
curl --request GET \
  --url https://api.danubeai.com/v1/tools \
  --header 'danube-api-key: <api-key>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "service_id": "<string>",
    "parameters": {},
    "status": "active",
    "tags": [
      "<string>"
    ]
  }
]
Get a complete list of all available tools. Use search or service filtering for more targeted results.

Example

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

Authorizations

danube-api-key
string
header
required

Your Danube API key

Response

List of tools

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