List Super Agent runs
curl --request GET \
--url https://developer.creao.ai/v1/super-agent/runs \
--header 'Authorization: Bearer <token>'const url = 'https://developer.creao.ai/v1/super-agent/runs';
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"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"runs": [
{
"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"
}
],
"limit": 123,
"offset": 123
}Super Agent
List Super Agent runs
Fetch recent Super Agent runs with optional status filtering.
GET
/
v1
/
super-agent
/
runs
List Super Agent runs
curl --request GET \
--url https://developer.creao.ai/v1/super-agent/runs \
--header 'Authorization: Bearer <token>'const url = 'https://developer.creao.ai/v1/super-agent/runs';
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"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"runs": [
{
"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"
}
],
"limit": 123,
"offset": 123
}Authorizations
bearerAuthapiKeyQuery
Account API key from Developer Console. Keys start with cr_sk_.
Query Parameters
Filter by run status.
Available options:
pending, running, completed, failed, cancelled Number of runs to return. Values above 100 are capped at 100.
Required range:
1 <= x <= 100Number of runs to skip.
Required range:
x >= 0