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
name
string
required

Name of the agent

type
string
required

Type of agent (e.g. DeFi, NFT, Social)

description
string

Detailed description of the agent's purpose

networks
string[]

Blockchain networks the agent operates on

triggers
object[]

Conditions that activate the agent

actions
object[]

Actions the agent can perform