curl --request POST \
--url https://api.gigabrain.gg/v1/superagents \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "My Trading Agent",
"model": "gpt-4o",
"model_provider": "openai"
}
'{
"agent_id": "a1b2c3d4-5678-90ab-cdef-1234567890ab",
"name": "ETH Scalper",
"bot_username": null,
"wallet_address": "0x1234...abcd",
"status": "running"
}{
"statusCode": 401,
"message": "Invalid or revoked API key"
}{
"statusCode": 429,
"message": "Rate limit exceeded",
"retryAfter": 45,
"resetAt": "2023-11-07T05:31:56Z"
}Agents
Launch SuperAgent
Launch a new always-on SuperAgent. Each agent runs in its own cloud container with persistent memory and optional Telegram bot.
POST
/
v1
/
superagents
curl --request POST \
--url https://api.gigabrain.gg/v1/superagents \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "My Trading Agent",
"model": "gpt-4o",
"model_provider": "openai"
}
'{
"agent_id": "a1b2c3d4-5678-90ab-cdef-1234567890ab",
"name": "ETH Scalper",
"bot_username": null,
"wallet_address": "0x1234...abcd",
"status": "running"
}{
"statusCode": 401,
"message": "Invalid or revoked API key"
}{
"statusCode": 429,
"message": "Rate limit exceeded",
"retryAfter": 45,
"resetAt": "2023-11-07T05:31:56Z"
}Authorizations
Your Gigabrain API key. Get one at https://gigabrain.gg/profile?tab=api. Format: gb_sk_...
Body
application/json
Display name for the agent
Model ID from the selected provider
Provider for the model
Available options:
openai, anthropic, xai, openrouter, venice Custom soul.md content — the agent's identity and instructions
Short description of what the agent does
Telegram bot token (from @BotFather) for Telegram interface
Was this page helpful?