Skip to main content
GET
/
v1
/
projects
/
{projectId}
/
tools
List Tools
curl --request GET \
  --url https://api.pathors.com/v1/projects/{projectId}/tools \
  --header 'Authorization: <authorization>'
{
  "data": [
    {}
  ]
}

Request

GET https://api.pathors.com/v1/projects/{projectId}/tools

Path Parameters

projectId
string
required
The project ID

Headers

Authorization
string
required
Bearer token using your developer key

Response

data
array
Array of tool objects with id, type, name, description, metadata, and inputSchema.

Example

curl https://api.pathors.com/v1/projects/{projectId}/tools \
  -H "Authorization: Bearer dk_your_key"
{
  "data": [
    {
      "id": "tool-uuid",
      "type": "restful",
      "name": "search-api",
      "description": "Search the database",
      "metadata": { "url": "https://api.example.com/search", "method": "GET" },
      "inputSchema": { "type": "object", "properties": { "query": { "type": "string" } } }
    }
  ]
}