Skip to main content
GET
/
v1
/
tools
List tools
curl --request GET \
  --url https://api.pyai.com/v1/tools \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "data": [
    {
      "object": "tool",
      "id": "<string>",
      "org_id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "input_schema": {},
      "webhook_url": "<string>",
      "timeout_ms": 123,
      "created_at": 123
    }
  ],
  "has_more": false
}

Authorizations

Authorization
string
header
required

Use Authorization: Bearer pyai_live_... (or pyai_test_...).

Response

Tools

object
string
Example:

"list"

data
object[]
has_more
boolean
Example:

false