Agent
GET/api/v1/agents
Authorization
bearer_token In: header
Query Parameters
Full-text search query applied to display name and description.
1-indexed page number.
int640 <= valuePage size (max 100).
int640 <= valueSort field (created_at, display_name, key).
Sort order (asc or desc).
Value in
- "asc"
- "desc"
Filter by visibility (private, organization).
Value in
- "private"
- "organization"
Filter by status (active, disabled).
Value in
- "active"
- "disabled"
Additional filter expressions in the form field:operator:value.
Response Body
application/json
curl -X GET "https://example.com/api/v1/agents"{ "agents": [ { "agent_id": "string", "created_at": "2019-08-24T14:15:22Z", "description": "string", "display_name": "string", "key": "string", "org_id": "string", "owner_id": "string", "profile_url": "string", "status": "active", "updated_at": "2019-08-24T14:15:22Z", "visibility": "private" } ], "pagination": { "has_more": true, "page": 0, "page_size": 0, "total": 0 }}POST/api/v1/agents
Authorization
bearer_token In: header
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X POST "https://example.com/api/v1/agents" \ -H "Content-Type: application/json" \ -d '{ "agent_toml": "string", "description": "string", "display_name": "string", "key": "string", "prompt_text": "string" }'{ "agent_id": "string", "created_at": "2019-08-24T14:15:22Z", "display_name": "string", "key": "string"}POST/api/v1/agents/resolve
Authorization
bearer_token In: header
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X POST "https://example.com/api/v1/agents/resolve" \ -H "Content-Type: application/json" \ -d '{ "keys": [ "string" ] }'{ "missing": [ "string" ], "resolved": [ { "agent_id": "string", "created_at": "2019-08-24T14:15:22Z", "description": "string", "display_name": "string", "key": "string", "org_id": "string", "owner_id": "string", "profile_url": "string", "status": "active", "updated_at": "2019-08-24T14:15:22Z", "visibility": "private", "agent_toml": "string", "compaction_toml": "string", "intent_toml": "string", "memory_toml": "string", "procedures": null, "prompt_text": "string", "rag_toml": "string", "shield_toml": "string" } ]}GET/api/v1/agents/resolve/{key}
Authorization
bearer_token In: header
Path Parameters
Response Body
application/json
curl -X GET "https://example.com/api/v1/agents/resolve/string"{ "agent_id": "string", "created_at": "2019-08-24T14:15:22Z", "description": "string", "display_name": "string", "key": "string", "org_id": "string", "owner_id": "string", "profile_url": "string", "status": "active", "updated_at": "2019-08-24T14:15:22Z", "visibility": "private", "agent_toml": "string", "compaction_toml": "string", "intent_toml": "string", "memory_toml": "string", "procedures": null, "prompt_text": "string", "rag_toml": "string", "shield_toml": "string"}GET/api/v1/agents/{agent_id}
Authorization
bearer_token In: header
Path Parameters
Query Parameters
Response detail level: "full" (default, includes prompt/TOML payloads) or "summary" (metadata only).
Response Body
application/json
curl -X GET "https://example.com/api/v1/agents/string"{ "agent_id": "string", "created_at": "2019-08-24T14:15:22Z", "description": "string", "display_name": "string", "key": "string", "org_id": "string", "owner_id": "string", "profile_url": "string", "status": "active", "updated_at": "2019-08-24T14:15:22Z", "visibility": "private", "agent_toml": "string", "compaction_toml": "string", "intent_toml": "string", "memory_toml": "string", "procedures": null, "prompt_text": "string", "rag_toml": "string", "shield_toml": "string"}DELETE/api/v1/agents/{agent_id}
Authorization
bearer_token In: header
Path Parameters
Response Body
curl -X DELETE "https://example.com/api/v1/agents/string"PUT/api/v1/agents/{agent_id}
Authorization
bearer_token In: header
Path Parameters
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X PUT "https://example.com/api/v1/agents/string" \ -H "Content-Type: application/json" \ -d '{}'{ "agent_id": "string", "created_at": "2019-08-24T14:15:22Z", "description": "string", "display_name": "string", "key": "string", "org_id": "string", "owner_id": "string", "profile_url": "string", "status": "active", "updated_at": "2019-08-24T14:15:22Z", "visibility": "private", "agent_toml": "string", "compaction_toml": "string", "intent_toml": "string", "memory_toml": "string", "procedures": null, "prompt_text": "string", "rag_toml": "string", "shield_toml": "string"}