v1

latestOpenAPI 3.0.12026-07-2691137122.3 KB
AgentToolService

List Agent Tools

List agent tools for the authenticated organization, optionally filtered by agent.

get/api/v1/tools/

Query parameters

limitinteger

Maximum number of records to return.

offsetinteger

Number of records to skip before returning results.

agentIdstring uuid

Filter tools to a single agent UUID.

agent_idstring uuid

Alias for agentId.

Response

Tools fetched successfully

successboolean
messagestring

Example response

{
  "success": true,
  "message": "Tools fetched successfully",
  "data": [
    {
      "definition": {
        "url": "https://example.com/book",
        "method": "POST",
        "parameters": {
          "type": "object"
        }
      }
    }
  ],
  "meta": {
    "total": "5",
    "limit": 20
  }
}