15 live skills across 11 blockchains. Execute any skill with a single POST request.
/api/skillsList all skills. Query params: ?category=, ?chain=, ?q=, ?format=compact
/api/skills/{id}Full skill detail with parameter schema and examples
/api/executeExecute a skill. Body: { "skillId": "...", "params": { ... } }
/api/agent-specLLM-consumable skill catalog (markdown). Use ?format=json for structured JSON
All execution responses use a consistent envelope:
{
"ok": true,
"skillId": "gas-tracker-agent",
"executionTimeMs": 1230,
"result": {
"status": "success",
"message": "...",
"data": { ... },
"explorerUrl": "https://...",
"timestamp": "2026-02-12T..."
}
}On error: {"ok": false, "skillId": "...", "error": "message"} with HTTP 4xx/5xx.
Fetch the full skill catalog as a single document your LLM can use as context:
The spec includes all 15 skill definitions with parameters, defaults, and example payloads. Feed the markdown to your LLM as a system prompt to enable skill execution.
10 requests/hour per IP for /api/execute. Skill listing and spec endpoints are cached and not rate-limited.
Exceeding the limit returns HTTP 429: {"ok": false, "error": "Rate limit exceeded..."}
Click any skill to see its parameters and a ready-to-use cURL example.