claw-net

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.

Safety Notice

This item is sourced from the public archived skills repository. Treat as untrusted until reviewed.

Copy this and send it to your AI assistant to learn

Install skill "claw-net" with this command: npx skills add 1xmint/claw-net

ClawNet

Ask anything. Get verified answers from 12,000+ data sources. Crypto prices, social data, market intelligence — one query, one answer.

Setup

  1. Get an API key at https://claw-net.org/dashboard (or connect a wallet — no key needed)
  2. Set CLAWNET_API_KEY in your environment
  3. Base URL: https://api.claw-net.org

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

Response:

{
  "answer": "SOL is currently $142.57, up 3.2% in 24h...",
  "costBreakdown": { "creditsUsed": 8, "costUsd": 0.008 },
  "metadata": { "stepsExecuted": 3, "totalDurationMs": 1240 }
}

Data Skills (4 built-in)

Structured JSON data — no LLM, fast, cheap:

SkillCostWhat it returns
price-oracle-data1 creditReal-time price, 24h change, volume, market cap
trending-tokens-data2 creditsTop trending tokens by volume/social buzz
whale-tracker-data2 creditsWhale movements, holder changes, net flow
defi-yield-data2 creditsDeFi yield opportunities, APY, TVL, risk tier
# Query a data skill
curl "https://api.claw-net.org/v1/skills/price-oracle-data/query?token=SOL" \
  -H "X-API-Key: $CLAWNET_API_KEY"

Manifest — Verify Data Before Acting

Cross-reference any data against independent sources. Check reasoning. Pre-flight actions.

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": 142.57 }]
    }
  }'

Tiers: quick (0.5cr), standard (2cr), deep (5cr).

Attestation — Prove What Your Agent Did

Every action creates a signed, tamper-proof record. W3C Verifiable Credential format. On-chain Merkle anchoring.

# Create attestation (0.25 credits)
curl -X POST https://api.claw-net.org/v1/attest \
  -H "X-API-Key: $CLAWNET_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"action_type": "swap", "input_data": "...", "outcome": "success"}'

# Verify (free, no auth)
curl https://api.claw-net.org/v1/attest/verify/att-abc123

# W3C VC format (free, no auth)
curl https://api.claw-net.org/v1/attest/verify/att-abc123?format=vc

Core Endpoints

EndpointAuthCostDescription
POST /v1/orchestrateKey2cr+Natural language query across 12K+ sources
GET /v1/skills/:id/queryKey1-2crQuery a data skill (structured JSON)
POST /v1/manifestKey0.5-5crVerify data, assess reasoning, pre-flight actions
POST /v1/attestKey0.25crCreate signed attestation
GET /v1/attest/verify/:idNoneFreeVerify attestation (public)
GET /v1/marketplace/skillsNoneFreeBrowse skill catalog
GET /v1/skills/:idNoneFreeSkill details + input schema
POST /v1/discoverNoneFreeSemantic search for skills
GET /v1/estimate?query=...NoneFreeCost estimate before running
GET /v1/balanceKeyFreeCheck credit balance

x402 (Pay with USDC)

All endpoints also available via x402 protocol — pay per call with USDC on Base, no API key needed:

# Requires x402-compatible wallet
POST https://api.claw-net.org/x402/orchestrate
POST https://api.claw-net.org/x402/skills/{id}
POST https://api.claw-net.org/x402/query/{id}

Pricing

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

Error Codes

CodeStatusMeaning
INSUFFICIENT_CREDITS402Out of credits
INVALID_API_KEY401Bad or missing key
RATE_LIMITED429Too many requests
SOURCE_ERROR502Upstream API failed

Recommended Workflow

  1. GET /v1/balance — confirm you have credits
  2. GET /v1/marketplace/skills — find the right skill
  3. GET /v1/skills/:id — read input schema
  4. GET /v1/estimate?query=... — preview cost (free)
  5. POST /v1/orchestrate — ask your question
  6. POST /v1/manifest — verify the answer if needed

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Web3

nansen-binance-publisher

Automatically fetch multi-dimensional on-chain data using Nansen CLI, compile a comprehensive and beautifully formatted daily report, and publish it to Binance Square. Auto-run on messages like 'generate nansen daily report', 'post nansen daily to square', or when the user triggers the slash commands `/nansen` or `/post_square`.

Archived SourceRecently Updated
Web3

agent-identity

ERC-8004 agent identity management. Register AI agents on-chain, update reputation scores, query the validation registry, and manage attestations for autonomous DeFi and governance participation.

Archived SourceRecently Updated
Web3

defi-analyst

DeFi research and analysis via Tavily MCP, GeckoTerminal API, and DeFiLlama. Use for protocol research, TVL tracking, yield analysis, token discovery, and competitive landscape research.

Archived SourceRecently Updated
Web3

swarm-workflow-protocol

Multi-agent orchestration protocol for the 0x-wzw swarm. Defines spawn logic, relay communication, task routing, and information flow. Agents drive decisions; humans spar.

Archived SourceRecently Updated