Skip to main content
GET
/
ai
/
agents
List agents
curl --request GET \
  --url https://{cluster}.cognitedata.com/api/v1/projects/{project}/ai/agents \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "createdTime": 123,
      "externalId": "<string>",
      "lastUpdatedTime": 123,
      "name": "<string>",
      "ownerId": "<string>",
      "runtimeVersion": "<string>",
      "description": "<string>",
      "instructions": "<string>",
      "model": "azure/gpt-4.1-mini",
      "tools": []
    }
  ]
}

Authorizations

Authorization
string
header
required

Access token issued by the CDF project's configured identity provider. Access token must be an OpenID Connect token, and the project must be configured to accept OpenID Connect tokens. Use a header key of 'Authorization' with a value of 'Bearer $accesstoken'. The token can be obtained through any flow supported by the identity provider.

Response

Successful Response

items
AgentListResponseItem · object[]
required

A list of agents.

Last modified on April 23, 2026