List agents
curl --request GET \
--url https://developer.creao.ai/v1/agents \
--header 'Authorization: Bearer <token>'const url = 'https://developer.creao.ai/v1/agents';
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/agents"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"agents": [
{
"agent_id": "00000000-0000-4000-8000-000000000000",
"name": "Equity Research Agent",
"description": "Builds a stock analysis memo from public filings.",
"version": "0.1",
"status": "active",
"write_autonomy": "full_auto",
"created_at": "2026-07-02T00:00:00.000Z",
"updated_at": "2026-07-03T00:00:00.000Z"
}
],
"limit": 20,
"offset": 0
}{
"error": "AUTHENTICATION_REQUIRED"
}{
"error": "RATE_LIMITED"
}Agents
List agents
List personal CREAO agents for the authenticated account.
GET
/
v1
/
agents
List agents
curl --request GET \
--url https://developer.creao.ai/v1/agents \
--header 'Authorization: Bearer <token>'const url = 'https://developer.creao.ai/v1/agents';
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/agents"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"agents": [
{
"agent_id": "00000000-0000-4000-8000-000000000000",
"name": "Equity Research Agent",
"description": "Builds a stock analysis memo from public filings.",
"version": "0.1",
"status": "active",
"write_autonomy": "full_auto",
"created_at": "2026-07-02T00:00:00.000Z",
"updated_at": "2026-07-03T00:00:00.000Z"
}
],
"limit": 20,
"offset": 0
}{
"error": "AUTHENTICATION_REQUIRED"
}{
"error": "RATE_LIMITED"
}Authorizations
bearerAuthapiKeyQuery
Account API key from Developer Console. Keys start with cr_sk_.
Query Parameters
Page size. Defaults to 20. Maximum 100.
Required range:
1 <= x <= 100Number of agents to skip. Defaults to 0.
Required range:
x >= 0