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).

3,891 stars

Best use case

claw-net is best used when you need a repeatable AI agent workflow instead of a one-off prompt. It is especially useful for teams working in multi. AI agent orchestration with 12,000+ API endpoints, 4 crypto data skills, Manifest verification, and Attestation proofs. Ask anything in natural language — get verified answers. Pay-per-query credits ($0.001 each). Wallet auth (SIWX) or API key.

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).

Users should expect a more consistent workflow output, faster repeated execution, and less time spent rewriting prompts from scratch.

Practical example

Example input

Use the "claw-net" skill to help with this workflow task. Context: AI agent orchestration with 12,000+ API endpoints, 4 crypto data skills, Manifest verification, and Attestation proofs. Ask anything in natural language — get verified answers. Pay-per-query credits ($0.001 each). Wallet auth (SIWX) or API key.

Example output

A structured workflow result with clearer steps, more consistent formatting, and an output that is easier to reuse in the next run.

When to use this skill

  • Use this skill when you want a reusable workflow rather than writing the same prompt again and again.

When not to use this skill

  • Do not use this when you only need a one-off answer and do not need a reusable workflow.
  • Do not use it if you cannot install or maintain the related files, repository context, or supporting tools.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/claw-net/SKILL.md --create-dirs "https://raw.githubusercontent.com/openclaw/skills/main/skills/1xmint/claw-net/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/claw-net/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How claw-net Compares

Feature / Agentclaw-netStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

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).

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

Related Guides

SKILL.md Source

# 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

```bash
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?"}'
```

```json
{
  "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.
```bash
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:
```json
{
  "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:

| Skill | Cost | What 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 |

```bash
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:

```bash
# 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)

```bash
# 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:

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

Every response includes cryptographic proof of where the data came from (see [Provenance](#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:

```bash
# 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:

```bash
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)

| Endpoint | What 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)

| Endpoint | What 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)

| Endpoint | Cost | What it does |
|---|---|---|
| `POST /v1/orchestrate` | 2+ credits | Natural language query across 13,000+ sources |
| `GET /v1/skills/:id/query` | 1-2 credits | Query a data skill (structured JSON) |
| `POST /v1/skills/:id/invoke` | varies | Invoke a skill directly with variables |
| `POST /v1/manifest` | 0.5-5 credits | Cross-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:

| Source | Endpoints |
|---|---|
| Built-in registry | 274 curated |
| [ClawAPIs](https://clawapis.com) | Dynamic providers |
| [402index](https://402index.io) | 15,000+ community directory |
| [Coinbase Bazaar](https://cdp.coinbase.com) | Official x402 discovery |
| [Zauth](https://zauthx402.com) | Pre-verified (only WORKING status) |
| [Dexter](https://x402.dexter.cash) | Facilitator marketplace |
| [x402list](https://x402list.fun) | 17,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](https://www.npmjs.com/package/soma-sense) to independently verify ClawNet's model usage via MCP
- Read the [Soma paper](https://doi.org/10.5281/zenodo.19260081) for the full protocol

**On-chain identity:** ClawNet ([36119](https://basescan.org/nft/0x8004A169FB4a3325136EB29fA0ceB6D2e539a432/36119)) and Soma ([37696](https://basescan.org/nft/0x8004A169FB4a3325136EB29fA0ceB6D2e539a432/37696)) are registered on Base Mainnet via [ERC-8004](https://eips.ethereum.org/EIPS/eip-8004).

## Error Codes

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

Related Skills

openclaw-youtube

3891
from openclaw/skills

YouTube SERP Scout for agents. Search top-ranking videos, channels, and trends for content research and competitor tracking.

Content & Documentation

openclaw-search

3891
from openclaw/skills

Intelligent search for agents. Multi-source retrieval with confidence scoring - web, academic, and Tavily in one unified API.

Data & Research

openclaw-media-gen

3891
from openclaw/skills

Generate images & videos with AIsa. Gemini 3 Pro Image (image) + Qwen Wan 2.6 (video) via one API key.

Content & Documentation

OpenClaw Mastery — The Complete Agent Engineering & Operations System

3891
from openclaw/skills

> Built by AfrexAI — the team that runs 9+ production agents 24/7 on OpenClaw.

DevOps & Infrastructure

clawrouter

3891
from openclaw/skills

Smart LLM router — save 67% on inference costs. Routes every request to the cheapest capable model across 41 models from OpenAI, Anthropic, Google, DeepSeek, and xAI.

AI Optimization & Cost Savings

openclaw-safe-change-flow

3891
from openclaw/skills

Safe OpenClaw config change workflow with backup, minimal edits, validation, health checks, and rollback. Single-instance first; secondary instance optional.

DevOps & Infrastructure

jqopenclaw-node-invoker

3891
from openclaw/skills

统一通过 Gateway 的 node.invoke 调用 JQOpenClawNode 能力(file.read、file.write、process.exec、process.manage、system.run、process.which、system.info、system.screenshot、system.notify、system.clipboard、system.input、node.selfUpdate)。当用户需要远程文件读写、文件移动/删除、目录创建/删除、进程管理(列表/搜索/终止)、远程进程执行、命令可执行性探测、系统信息采集、截图采集、系统弹窗、系统剪贴板读写、输入控制(鼠标/键盘)、节点自更新、节点命令可用性排查或修复 node.invoke 参数错误时使用。

DevOps & Infrastructure

alphaclaw

3891
from openclaw/skills

AlphaClaw 是 SkillHub 技能商店的 CLI 工具,用于搜索、安装、发布和管理 Claude Code 技能。支持 AK/SK 登录、关键词搜索技能、一键安装/发布技能包、收藏和评论等完整功能。

openclaw-stock-skill

3891
from openclaw/skills

使用 data.diemeng.chat 提供的接口查询股票日线、分钟线、财务指标等数据,支持 A 股等市场。

Data & Research

clawdnet

3891
from openclaw/skills

Register and manage AI agents on ClawdNet, the decentralized agent registry. Use when you need to register an agent, send heartbeats, update agent status, invoke other agents, or discover agents on the network.

Agent Management & Personalization

claw2ui

3891
from openclaw/skills

Generate interactive web pages (dashboards, charts, tables, reports) and serve them via public URL. Use this skill when the user explicitly asks for data visualization, dashboards, analytics reports, comparison tables, status pages, or web-based content. Also triggers for: "draw me a chart", "make a dashboard", "show me a table", "generate a report", "visualize this data", "render this as a page", "publish a page", "claw2ui". If the response would benefit from charts, sortable tables, or rich layout, **suggest** using Claw2UI and wait for user confirmation before publishing. Chinese triggers: "做个仪表盘", "画个图表", "做个报表", "生成一个页面", "做个dashboard", "数据可视化", "做个网页", "展示数据", "做个表格", "做个图", "发布一个页面", "做个看板". Additional English triggers: "create a webpage", "show analytics", "build a status page", "make a chart", "data overview", "show me stats", "create a board", "render a page", "comparison chart", "trend analysis", "pie chart", "bar chart", "line chart", "KPI dashboard", "metrics overview", "weekly report", "monthly report".

Data Visualization

openclaw-whatsapp

3891
from openclaw/skills

WhatsApp bridge for OpenClaw — send/receive messages, auto-reply agents, QR pairing, message search, contact sync

Workflow & Productivity