Skip to main content
GET
https://ageneral.ai
/
v1
/
agents
List agents
curl --request GET \
  --url https://ageneral.ai/v1/agents \
  --header 'Authorization: Bearer <token>'
{
  "agents": [
    {
      "id": "<string>",
      "projectId": "<string>",
      "name": "<string>",
      "lifecycleState": "<string>",
      "guest": "<string>",
      "runtimeProvider": "<string>",
      "connectorSlugs": [
        "<string>"
      ],
      "runtime": {},
      "createdAt": "<string>",
      "updatedAt": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Session JWT from Ageneral sign-in. Send as Authorization: Bearer <token>.

Query Parameters

project_id
string
required

Project id whose agents you want to list.

Response

Success

agents
object[]