Skip to main content
GET
/
services
/
public
/
{service_id}
/
tools
Get Service Tools
curl --request GET \
  --url https://api.danubeai.com/v1/services/public/{service_id}/tools
[
  {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "service_id": "<string>",
    "parameters": {},
    "status": "active",
    "tags": [
      "<string>"
    ]
  }
]
Get all tools available from a specific service provider. This endpoint is public and does not require authentication.

Example

curl -X GET "https://api.danubeai.com/v1/services/public/hacker_news/tools"

Path Parameters

service_id
string
required

The unique identifier of the service

Response

List of tools for the service

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