Skip to main content
GET
/
agents
/
{agentId}
Retrieve a specific agent
curl --request GET \
  --url https://api.artosai.com/agents/{agentId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "type": "<string>",
  "category": "<string>",
  "description": "<string>",
  "capabilities": [
    "<string>"
  ],
  "output_formats": [
    "<string>"
  ],
  "version": "<string>",
  "created_by": "<string>",
  "usage_count": 123,
  "last_used": "2023-11-07T05:31:56Z",
  "compatible_connectors": [
    "<string>"
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

agentId
string
required

Response

200 - application/json

Agent details

id
string
name
string
type
string
category
string
description
string
capabilities
string[]
output_formats
string[]
version
string
created_by
string
usage_count
integer
last_used
string<date-time>
compatible_connectors
string[]