Skills claw-net

Ask a question in plain English, get data from 13,000+ APIs in one call. Crypto prices, social data, market intelligence. Every response is cryptographically signed. Pay $0.001 per query. No account needed with x402 (USDC).

install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/1xmint/claw-net" ~/.claude/skills/clawdbot-skills-claw-net && rm -rf "$T"
manifest: skills/1xmint/claw-net/SKILL.md
source content

ClawNet

Ask a question in plain English. Get data from 13,000+ APIs in one call. ClawNet figures out which data sources to query, runs them in parallel, and gives you one clean answer.

Quick Start

curl -X POST https://api.claw-net.org/v1/orchestrate \
  -H "X-API-Key: $CLAWNET_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query": "What is the price of SOL right now?"}'
{
  "answer": "SOL is currently trading at $148.23, up 3.2% in 24h. Volume: $2.1B...",
  "costBreakdown": { "creditsUsed": 8, "costUsd": 0.008 },
  "metadata": { "stepsExecuted": 3, "totalDurationMs": 1240 }
}

That's it. One question in, one answer out.

Setup (3 options)

Option A: API Key (most common)

  1. Get a key at https://claw-net.org/dashboard
  2. Set
    CLAWNET_API_KEY
    in your environment
  3. Base URL:
    https://api.claw-net.org

Option B: x402 / USDC (no account needed) Pay per call with USDC on Base. No API key, no signup. Your wallet-equipped agent just calls the endpoint and pays automatically.

POST https://api.claw-net.org/x402/orchestrate
POST https://api.claw-net.org/x402/skills/{id}

Option C: MCP (for AI coding tools) Connect ClawNet as an MCP server in Claude Code, Cursor, VSCode, or Windsurf:

{
  "mcpServers": {
    "clawnet": {
      "command": "npx",
      "args": ["tsx", "src/mcp/server.ts"],
      "env": { "CLAWNET_API_KEY": "your_key", "CLAWNET_BASE_URL": "https://api.claw-net.org" }
    }
  }
}

Data Skills (4 built-in)

Pre-built skills that return structured JSON. No LLM involved — fast and cheap:

SkillCostWhat you get
price-oracle-data
1 credit ($0.001)Real-time price, 24h change, volume, market cap
trending-tokens-data
2 credits ($0.002)Top trending tokens by volume and social buzz
whale-tracker-data
2 credits ($0.002)Large holder movements, net flow, holder changes
defi-yield-data
2 credits ($0.002)DeFi yield opportunities, APY, TVL, risk tier
curl "https://api.claw-net.org/v1/skills/price-oracle-data/query?token=SOL" \
  -H "X-API-Key: $CLAWNET_API_KEY"

How to Use ClawNet

Step 1: Browse (free, no auth)

See what's available without an API key:

# Browse the skill catalog
GET /v1/marketplace/skills

# Check a specific skill's input format and pricing
GET /v1/marketplace/skills/price-oracle-data

Step 1b: Search & estimate (free, but needs API key)

# Semantic search for skills by topic
POST /v1/discover  {"query": "solana token prices"}

# Preview cost before running a query
GET /v1/estimate?query=What is SOL worth?

Step 2: Ask (uses credits)

Send a natural language query. ClawNet's LLM picks the best endpoints, runs them in parallel, and synthesizes the answer:

POST /v1/orchestrate  {"query": "Compare SOL vs ETH performance this week"}

Every response includes cryptographic proof of where the data came from (see Provenance below).

Step 3: Call directly (after discovery)

Once you know which skill you need, skip the LLM routing and call it directly — faster and cheaper:

# With API key
POST /v1/skills/price-oracle-data/invoke  {"variables": {"token": "SOL"}}

# With USDC (no API key needed)
POST /x402/skills/price-oracle-data  {"variables": {"token": "SOL"}}

Step 4: Come back when needs change

The registry updates every 4 hours with new endpoints from 7 discovery sources. New question? New data need? Use

/v1/orchestrate
again to discover the right endpoints.

Verify Data (optional)

Cross-reference any answer against independent sources before acting on it:

curl -X POST https://api.claw-net.org/v1/manifest \
  -H "X-API-Key: $CLAWNET_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"tier": "standard", "verify": {"claims": [{"type": "price", "subject": "SOL", "value": 148.23}]}}'

Tiers:

quick
(0.5 credits),
standard
(2 credits),
deep
(5 credits).

All Endpoints

Free (no auth needed)

EndpointWhat it does
GET /v1/marketplace/skills
Browse the skill catalog
GET /v1/marketplace/skills/:id
Skill details, input schema, pricing
GET /v1/soma/:did/trust
Check any agent's verification history
GET /v1/soma/:did/verdicts
Recent verification verdicts for an agent
GET /.well-known/soma.json
ClawNet's cryptographic identity

Requires API key (but no credit cost)

EndpointWhat it does
POST /v1/discover
Semantic search for skills by topic
GET /v1/estimate?query=...
Preview cost before running a query
GET /v1/balance
Check your credit balance

Paid (API key or x402)

EndpointCostWhat it does
POST /v1/orchestrate
2+ creditsNatural language query across 13,000+ sources
GET /v1/skills/:id/query
1-2 creditsQuery a data skill (structured JSON)
POST /v1/skills/:id/invoke
variesInvoke a skill directly with variables
POST /v1/manifest
0.5-5 creditsCross-reference data against independent sources

Pricing

1 credit = $0.001. Credits never expire. Buy at https://claw-net.org (Stripe or USDC).

A typical orchestration query costs 2-10 credits ($0.002-$0.01). Data skills cost 1-2 credits each.

Endpoint Discovery

ClawNet doesn't just have a static list of APIs. It auto-discovers new endpoints every 4 hours from 7 sources:

SourceEndpoints
Built-in registry274 curated
ClawAPIsDynamic providers
402index15,000+ community directory
Coinbase BazaarOfficial x402 discovery
ZauthPre-verified (only WORKING status)
DexterFacilitator marketplace
x402list17,000+ services

When you ask a question, ClawNet searches across all of these to find the best data source.

Provenance

Every response is cryptographically signed. You don't have to trust ClawNet — you can verify.

What this means in practice: Each response includes proof of what data was fetched, from where, and that it hasn't been tampered with. This happens automatically — no extra steps needed.

Response headers (on every orchestration and x402 response):

X-Soma-Protocol: soma/1.0
X-Soma-Data-Hash: <hash of the response data>
X-Soma-Signature: <cryptographic signature>
X-Soma-Model-Verified: true
X-Soma-Discovery: /.well-known/soma.json

Want to go deeper?

  • GET /.well-known/soma.json
    — ClawNet's full cryptographic identity
  • GET /v1/soma/:did/trust
    — verification history for any agent (free, public)
  • Install soma-sense to independently verify ClawNet's model usage via MCP
  • Read the Soma paper for the full protocol

On-chain identity: ClawNet (36119) and Soma (37696) are registered on Base Mainnet via ERC-8004.

Error Codes

CodeStatusMeaning
INSUFFICIENT_CREDITS
402Out of credits — buy more or use x402
INVALID_API_KEY
401Bad or missing API key
RATE_LIMITED
429Too many requests — wait and retry
SOURCE_ERROR
502Upstream data source failed — try again