Programmable agent infrastructure for 0G blockchain operations. Create instances, install skills, deploy agents, and send messages — all through a single REST API. Built on Thermidora Core.
No SDKs to install, no CLI to learn. Every operation is a REST call.
Provision a Thermidora instance via API. Each instance runs isolated agent infrastructure.
POST /v1/instances
{ "name": "my-0g-agents" }Add storage, chain, or KV skills to your instance. Skills give agents blockchain capabilities.
POST /v1/instances/:id/skills
{ "name": "0g-storage",
"type": "built-in" }Create agents from templates or from scratch. They start working immediately.
POST /v1/instances/:id/agents
{ "name": "StorageBot",
"slug": "storage-bot",
"skills": ["0g-storage"] }Pre-configured agents ready to deploy. Each comes with skills, schedules, and persona files.
Upload, download, pin, and monitor files on 0G decentralized storage. Automated health checks and expiry alerts.
Monitor 0G chain activity — whale alerts, gas trends, and token movements with custom thresholds.
Manage key-value data on 0G decentralized KV store. Schema management, batch ops, and versioning.
Monitor smart contracts for suspicious activity, audit access controls, and alert on anomalous transactions.
Modular capabilities that give your agents access to 0G blockchain operations.
Interact with 0G chain — read balances, send transactions, query blocks, monitor events.
Read, write, and manage key-value pairs on 0G decentralized KV store.
Create an agent with 0G skills and start interacting immediately.
curl -X POST /v1/instances/:id/agents \
-H "Authorization: Bearer tc_live_..." \
-d '{
"name": "StorageBot",
"slug": "storage-bot",
"displayName": "StorageBot",
"model": "anthropic.claude-sonnet-4",
"skills": ["0g-storage", "0g-chain"],
"fileMode": "appendToDefault",
"files": {
"SOUL.md": "You are StorageBot..."
}
}'curl -X POST /v1/instances/:id/agents \
/:agentId/messages \
-H "Authorization: Bearer tc_live_..." \
-d '{
"message": "Upload report.pdf to 0G
storage with 90-day pin"
}'
// Response:
{
"reply": "I'll upload report.pdf now.
Estimated cost: 0.008 A0GI.
Submitting transaction..."
}The API-driven infrastructure layer behind 0G AgentEngine. Managed instances, agent lifecycle, skill installation, secrets, and cron — all programmable. Build your own agent platform on top.
Programmable agent infrastructure with pre-built 0G skills. Start with a template or build from scratch — it's all API calls.