Request
GET https://api.pathors.com/v1/projects/{projectId}/tools
Path Parameters
Bearer token using your developer key
Response
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" } } }
}
]
}