Skip to main content
GET
/
v1
/
chat
/
tools
List tools
curl --request GET \
  --url https://api.agntix.ai/v1/chat/tools \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "GET_ACCOUNT_BALANCE",
      "description": "<string>",
      "ajvPropertiesSchema": {},
      "orgId": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 20,
    "total": 47,
    "totalPages": 3
  }
}
Every endpoint on this page requires either a Clerk-issued JWT (Authorization: Bearer <token>) or an organization API key (x-api-key: pk_…). Anonymous calls return 401 Unauthorized. See Authentication for the full setup.

Code examples

curl "https://api.agntix.ai/v1/chat/tools?page=1&limit=20" \
  -H "x-api-key: pk_live_••••"

Sample response

{
  "data": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "name": "GET_ACCOUNT_BALANCE",
      "description": "Retrieves the current account balance.",
      "type": "API_TOOL",
      "orgId": "org_2abc123",
      "createdAt": "2026-04-28T10:00:00Z",
      "updatedAt": "2026-04-28T10:00:00Z"
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 20,
    "total": 1,
    "totalPages": 1
  }
}

Authorizations

x-api-key
string
header
required

Organization API key. Obtain from the dashboard. Format: pk_live_…

Query Parameters

page
integer
default:1
limit
integer
default:20
Required range: x <= 100
type
enum<string>

Filter by tool type.

Available options:
API_TOOL,
FUNCTION_TOOL

Search by tool name.

Response

Paginated list of tools.

data
object[]
pagination
object