API-First Agent Infrastructure

API-Driven AI Agents for the 0G Network

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.

Everything via API

No SDKs to install, no CLI to learn. Every operation is a REST call.

Step 1

Create an instance

Provision a Thermidora instance via API. Each instance runs isolated agent infrastructure.

POST /v1/instances
{ "name": "my-0g-agents" }
Step 2

Install 0G skills

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" }
Step 3

Deploy agents

Create agents from templates or from scratch. They start working immediately.

POST /v1/instances/:id/agents
{ "name": "StorageBot",
  "slug": "storage-bot",
  "skills": ["0g-storage"] }

Agent Templates

Pre-configured agents ready to deploy. Each comes with skills, schedules, and persona files.

Storage Manager

Popular

Upload, download, pin, and monitor files on 0G decentralized storage. Automated health checks and expiry alerts.

0g-storage, 0g-chain
2 schedules

Chain Analytics

Monitor 0G chain activity — whale alerts, gas trends, and token movements with custom thresholds.

0g-chain, analytics
3 schedules

KV Store Agent

New

Manage key-value data on 0G decentralized KV store. Schema management, batch ops, and versioning.

0g-kv, 0g-chain
1 schedule

Security Sentinel

Advanced

Monitor smart contracts for suspicious activity, audit access controls, and alert on anomalous transactions.

0g-chain, security
2 schedules

0G Skills

Modular capabilities that give your agents access to 0G blockchain operations.

0G Storage

v1.0.0
uploaddownloadpinunpinlist_filesstorage_usage

0G Chain

v1.0.0

Interact with 0G chain — read balances, send transactions, query blocks, monitor events.

get_balancesend_txread_contractquery_blockwatch_eventsgas_estimate

0G KV Store

v1.0.0

Read, write, and manage key-value pairs on 0G decentralized KV store.

kv_getkv_setkv_deletekv_list_keyskv_batch

One API call to deploy

Create an agent with 0G skills and start interacting immediately.

Create Agent
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..."
    }
  }'
Chat with Agent
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..."
}
Powered by

Thermidora Core

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.

Managed Instances
Custom Skills
Agent Secrets
Cron Schedules
Learn more about Thermidora

Build on 0G + Thermidora

Programmable agent infrastructure with pre-built 0G skills. Start with a template or build from scratch — it's all API calls.