Skip to main content
GET
/
tools
/
agent
/
:id
Retrieve tools by agent id
curl --request GET \
  --url https://api.poligono.ai/v1/tools/agent/:id \
  --header 'Authorization: <api-key>'
{
  "data": [
    {
      "agent_id": "<string>",
      "authorization_status": "pending",
      "created_at": 123,
      "created_by": "<string>",
      "name": "<string>",
      "oauth2_url": "<string>",
      "organization_id": "<string>",
      "params": "<unknown>",
      "updated_at": 123,
      "id": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Type "Bearer" followed by a space and JWT token.

Path Parameters

id
string
required

Agent Id

Response

OK

data
object[]