Create a Super Agent realtime run
curl --request POST \
--url https://developer.creao.ai/v1/super-agent/realtime/runs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"input": {
"query": "Summarize recent Solana TVL changes."
}
}
'const url = 'https://developer.creao.ai/v1/super-agent/realtime/runs';
const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({input: {query: 'Summarize recent Solana TVL changes.'}})
};
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/realtime/runs"
payload = { "input": { "query": "Summarize recent Solana TVL changes." } }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)"{\"type\":\"run.created\",\"run_id\":\"11111111-1111-4111-8111-111111111111\",\"agent_id\":null,\"conversation_id\":\"22222222-2222-4222-8222-222222222222\",\"model\":\"anthropic/claude-haiku-4-5\",\"render_protocol\":1}\n{\"type\":\"output_text.delta\",\"delta\":\"Hello\"}\n{\"type\":\"run.completed\",\"run_id\":\"11111111-1111-4111-8111-111111111111\",\"status\":\"completed\",\"result\":{\"text\":\"Hello\",\"blocks\":[{\"type\":\"text\",\"content\":\"Hello\"}]},\"usage\":{\"credits\":1.2,\"models\":[{\"model\":\"anthropic/claude-haiku-4-5\",\"kind\":\"chat\",\"input_tokens\":800,\"output_tokens\":40}]}}\n"Super Agent
Create a Super Agent realtime run
Start a Super Agent conversation and stream public events.
POST
/
v1
/
super-agent
/
realtime
/
runs
Create a Super Agent realtime run
curl --request POST \
--url https://developer.creao.ai/v1/super-agent/realtime/runs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"input": {
"query": "Summarize recent Solana TVL changes."
}
}
'const url = 'https://developer.creao.ai/v1/super-agent/realtime/runs';
const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({input: {query: 'Summarize recent Solana TVL changes.'}})
};
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/realtime/runs"
payload = { "input": { "query": "Summarize recent Solana TVL changes." } }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)"{\"type\":\"run.created\",\"run_id\":\"11111111-1111-4111-8111-111111111111\",\"agent_id\":null,\"conversation_id\":\"22222222-2222-4222-8222-222222222222\",\"model\":\"anthropic/claude-haiku-4-5\",\"render_protocol\":1}\n{\"type\":\"output_text.delta\",\"delta\":\"Hello\"}\n{\"type\":\"run.completed\",\"run_id\":\"11111111-1111-4111-8111-111111111111\",\"status\":\"completed\",\"result\":{\"text\":\"Hello\",\"blocks\":[{\"type\":\"text\",\"content\":\"Hello\"}]},\"usage\":{\"credits\":1.2,\"models\":[{\"model\":\"anthropic/claude-haiku-4-5\",\"kind\":\"chat\",\"input_tokens\":800,\"output_tokens\":40}]}}\n"Authorizations
bearerAuthapiKeyQuery
Account API key from Developer Console. Keys start with cr_sk_.
Body
application/json
JSON input for Super Agent. Serialized input must be 256 KB or smaller.
Model id to run with. Omit to use the default model, currently anthropic/claude-sonnet-5.
Maximum string length:
100Existing Super Agent conversation to continue.
Personal workspace whose root uploads Super Agent can read.
Response
Public NDJSON render stream. One JSON object per line.