Skip to main content
GET
/
agents
/
{id}

Endpoint

GET https://gateway.orkeia.ai/agents/{id}

Headers

authorization:  <your_token>
Content-Type: application/json

Path Parameters

Send the agent’s id as a query parameter.
{
  "id": "Agent ID (required)"
}

Example (cURL)

curl -X GET "https://gateway.orkeia.ai/agents/agent123" \
  -H "authorization:  <your_token>"

Responses

Response - Success

response
{
  "status": "OK",
  "data": { 
	"Agent": {
  "name": "Agent Name",
  "enabled": "true",
  "model": "sabia-3",
  "auto": "false",
 "reasoning": "false",
  "publisher": "ork-123",
  "temperature": "1",
  "role": "content creator",
  "objective": "aims to perform such a task",
  "referencies": "reference text",
  "can.delegate": "false",
  "can_code": "false",
  "multimodal": "false",
  "sectors": ["market"],
  "tools": ["web_scrapper"],
  "knowledgeBases": ["market_base"]
	},
}

500 — Bad Request

{
  "status": "ERROR",
  "code": "server/error",
  "data": null
}

400 — Client Error

{
  "status": "ERROR",
  "code": "client/error",
  "data": null
}

Response

{
  "id": "agent123",
  "name": "AI Agent",
  "enabled": true
}