GET
/
agents
curl --request GET \
  --url https://api.sentio.ai/agents \
  --header 'Authorization: Bearer <token>'
[
  {
    "name": "<string>",
    "type": "<string>",
    "description": "<string>",
    "networks": [
      "<string>"
    ],
    "triggers": [
      {}
    ],
    "actions": [
      {}
    ]
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
integer

Maximum number of agents to return

Response

200
application/json
List of agents

The response is of type object[].