curl --request GET \
--url https://developer.creao.ai/v1/super-agent/runs/{run_id} \
--header 'Authorization: Bearer <token>'const url = 'https://developer.creao.ai/v1/super-agent/runs/{run_id}';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));import requests
url = "https://developer.creao.ai/v1/super-agent/runs/{run_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"run_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "pending",
"agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"conversation_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"model": "<string>",
"workspace_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"result": {
"agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"agent_name": "<string>",
"text": "<string>",
"chat_text": "<string>",
"blocks": [
{
"type": "text",
"content": "<string>"
}
],
"artifacts": [
{
"id": "<string>",
"title": "<string>",
"type": "<string>",
"url": "<string>",
"url_expires_at": "2023-11-07T05:31:56Z"
}
]
},
"usage": {
"credits": 123,
"models": [
{
"model": "<string>",
"kind": "chat",
"input_tokens": 1,
"output_tokens": 1,
"cache_read_tokens": 1,
"cache_write_tokens": 1,
"generated_images": 1,
"duration_seconds": 1
}
]
},
"error": {
"code": "<string>"
},
"created_at": "2023-11-07T05:31:56Z",
"started_at": "2023-11-07T05:31:56Z",
"completed_at": "2023-11-07T05:31:56Z",
"webhook_delivered_at": "2023-11-07T05:31:56Z"
}Get Super Agent run status
Fetch status, result, usage, and error details for a Super Agent run.
curl --request GET \
--url https://developer.creao.ai/v1/super-agent/runs/{run_id} \
--header 'Authorization: Bearer <token>'const url = 'https://developer.creao.ai/v1/super-agent/runs/{run_id}';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));import requests
url = "https://developer.creao.ai/v1/super-agent/runs/{run_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"run_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "pending",
"agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"conversation_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"model": "<string>",
"workspace_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"result": {
"agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"agent_name": "<string>",
"text": "<string>",
"chat_text": "<string>",
"blocks": [
{
"type": "text",
"content": "<string>"
}
],
"artifacts": [
{
"id": "<string>",
"title": "<string>",
"type": "<string>",
"url": "<string>",
"url_expires_at": "2023-11-07T05:31:56Z"
}
]
},
"usage": {
"credits": 123,
"models": [
{
"model": "<string>",
"kind": "chat",
"input_tokens": 1,
"output_tokens": 1,
"cache_read_tokens": 1,
"cache_write_tokens": 1,
"generated_images": 1,
"duration_seconds": 1
}
]
},
"error": {
"code": "<string>"
},
"created_at": "2023-11-07T05:31:56Z",
"started_at": "2023-11-07T05:31:56Z",
"completed_at": "2023-11-07T05:31:56Z",
"webhook_delivered_at": "2023-11-07T05:31:56Z"
}Authorizations
Account API key from Developer Console. Keys start with cr_sk_.
Path Parameters
Super Agent run ID.
Query Parameters
When true, replace result.text with the persisted chat_text
(the full assistant transcript). Historical runs without
chat_text keep the stored text. Accepts true or false.
Response
Super Agent run object.
Developer API run ID.
pending, running, completed, failed, cancelled Agent that ran. Creation runs return null until the agent is created, then the completed run includes the new agent ID.
Conversation ID for follow-up runs.
Model id this run executed with. null only for runs created before model selection shipped.
Personal workspace bound to this conversation, when set.
Final agent output. Completed runs commonly include text; agent-creation runs also include agent_id.
Show child attributes
Show child attributes
Settlement credits plus an optional per-model breakdown for the run.
Omitted when the run incurred no cost and collected no model usage.
models is present only for Super Agent–allowlisted accounts.
Token fields appear only for token-metered capabilities. Per-image
and per-second capabilities use generated_images or duration_seconds
instead. kind tells the client which fields apply.
Show child attributes
Show child attributes
Show child attributes
Show child attributes