{
  "schemaVersion": "1.0",
  "item": {
    "slug": "agentapi-hub",
    "name": "AgentAPI Hub",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/gizmo-dev/agentapi-hub",
    "canonicalUrl": "https://clawhub.ai/gizmo-dev/agentapi-hub",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/agentapi-hub",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agentapi-hub",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/agentapi-hub"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/agentapi-hub",
    "agentPageUrl": "https://openagent3.xyz/skills/agentapi-hub/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agentapi-hub/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agentapi-hub/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "AgentAPI",
        "body": "A curated directory of APIs designed for AI agents. Machine-readable. MCP-compatible. Agent-accessible.\n\nWebsite: https://agentapihub.com\nBilling API: https://api.agentapihub.com\nDocs: https://api.agentapihub.com/api/docs"
      },
      {
        "title": "x402 Pay-Per-Use Billing",
        "body": "AgentAPI supports x402 — a payment protocol that lets AI agents pay for API calls with USDC on Base. No API keys required."
      },
      {
        "title": "How It Works",
        "body": "Agent calls API endpoint (e.g., /api/gemini/chat/completions)\nServer returns 402 Payment Required with price + wallet address\nAgent sends USDC payment on Base chain\nAgent retries with payment proof in header\nServer verifies payment, proxies request, returns response"
      },
      {
        "title": "Example Flow",
        "body": "# 1. Initial request returns 402\ncurl https://api.agentapihub.com/api/gemini/chat/completions \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"model\":\"gemini-2.0-flash\",\"messages\":[{\"role\":\"user\",\"content\":\"Hello\"}]}'\n\n# Response: 402 Payment Required\n# {\n#   \"price\": \"0.001\",\n#   \"currency\": \"USDC\",\n#   \"chain\": \"base\",\n#   \"recipient\": \"0xcCb92A101347406ed140b18C4Ed27276844CD9D7\",\n#   \"paymentId\": \"pay_abc123\"\n# }\n\n# 2. Agent pays on Base, retries with proof\ncurl https://api.agentapihub.com/api/gemini/chat/completions \\\n  -H \"Content-Type: application/json\" \\\n  -H \"X-Payment-Proof: 0x...\" \\\n  -d '{\"model\":\"gemini-2.0-flash\",\"messages\":[{\"role\":\"user\",\"content\":\"Hello\"}]}'"
      },
      {
        "title": "Available x402 APIs",
        "body": "APIEndpointPriceGemini Chat/api/gemini/chat/completions~$0.001/reqGemini Embeddings/api/gemini/embeddings~$0.0005/req"
      },
      {
        "title": "Why x402?",
        "body": "No API keys — Agents self-provision access\nPay-per-use — No subscriptions, no minimums\nCrypto-native — USDC on Base (fast, cheap txns)\nAgent-friendly — Programmatic payments without human bottleneck"
      },
      {
        "title": "By Category",
        "body": "CategoryAPIsExampleSearchBrave, Serper, Exa, Tavily, PerplexityWeb search with AI summariesAI & MLOpenAI, Claude, Gemini, Groq, ReplicateLLM inference, image genCommunicationResend, Twilio, Slack, Discord, TelegramEmail, SMS, messagingDatabaseSupabase, Pinecone, Qdrant, Neon, UpstashSQL, vectors, KV storePaymentsStripe, Lemon Squeezy, PayPalPayment processingScrapingFirecrawl, Browserbase, ApifyWeb scraping, automationDeveloperGitHub, Vercel, Linear, SentryCode, deploy, issuesProductivityNotion, Google Calendar, TodoistTasks, scheduling"
      },
      {
        "title": "MCP-Compatible APIs",
        "body": "All 50+ APIs in the directory are MCP-compatible. Filter with ?mcp=true."
      },
      {
        "title": "JSON Endpoint",
        "body": "# Fetch all APIs\ncurl https://agentapihub.com/api/v1/apis\n\n# Search by capability\ncurl \"https://agentapihub.com/api/v1/apis?q=send+email&mcp=true\"\n\n# Filter by category\ncurl \"https://agentapihub.com/api/v1/apis?category=ai\""
      },
      {
        "title": "Response Format",
        "body": "{\n  \"id\": \"resend\",\n  \"name\": \"Resend\",\n  \"description\": \"Modern email API for developers\",\n  \"category\": \"communication\",\n  \"provider\": \"Resend\",\n  \"docs\": \"https://resend.com/docs\",\n  \"auth\": \"api_key\",\n  \"pricing\": \"freemium\",\n  \"pricingDetails\": \"3,000 free/mo, then $20/mo\",\n  \"rateLimit\": \"10 req/sec\",\n  \"mcpCompatible\": true,\n  \"examplePrompt\": \"Send an email notification using Resend\",\n  \"latency\": \"fast\",\n  \"reliability\": 99.9,\n  \"tags\": [\"email\", \"transactional\", \"notifications\"]\n}"
      },
      {
        "title": "Search",
        "body": "Brave Search - Privacy-focused, 2k free/mo\nExa - Neural/semantic search for AI\nTavily - Built specifically for AI agents"
      },
      {
        "title": "AI & ML",
        "body": "OpenAI - GPT-4, DALL-E, Whisper\nAnthropic Claude - Best for reasoning/coding\nGroq - Fastest inference (500+ tok/sec)"
      },
      {
        "title": "Communication",
        "body": "Resend - Simple email API, 3k free/mo\nTwilio - SMS/voice, industry standard\nSlack/Discord/Telegram - Team messaging"
      },
      {
        "title": "Database",
        "body": "Supabase - Postgres + auth + storage\nPinecone/Qdrant - Vector DBs for RAG\nUpstash - Serverless Redis"
      },
      {
        "title": "Usage Examples",
        "body": "# Find an API for sending emails\nSearch AgentAPI for \"email\" → Returns Resend, SendGrid, Twilio\n\n# Find vector databases for RAG\nSearch AgentAPI for \"vector embeddings\" → Returns Pinecone, Qdrant, Weaviate\n\n# Find fast LLM inference\nSearch AgentAPI for category \"ai\" + filter by latency → Returns Groq, Gemini Flash"
      },
      {
        "title": "Contributing",
        "body": "Submit new APIs at https://agentapihub.com (Submit API link in footer)."
      },
      {
        "title": "Built By",
        "body": "GizmoLab (@gizmolab_) — gizmolab.io"
      }
    ],
    "body": "AgentAPI\n\nA curated directory of APIs designed for AI agents. Machine-readable. MCP-compatible. Agent-accessible.\n\nWebsite: https://agentapihub.com\nBilling API: https://api.agentapihub.com\nDocs: https://api.agentapihub.com/api/docs\n\nx402 Pay-Per-Use Billing\n\nAgentAPI supports x402 — a payment protocol that lets AI agents pay for API calls with USDC on Base. No API keys required.\n\nHow It Works\nAgent calls API endpoint (e.g., /api/gemini/chat/completions)\nServer returns 402 Payment Required with price + wallet address\nAgent sends USDC payment on Base chain\nAgent retries with payment proof in header\nServer verifies payment, proxies request, returns response\nExample Flow\n# 1. Initial request returns 402\ncurl https://api.agentapihub.com/api/gemini/chat/completions \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"model\":\"gemini-2.0-flash\",\"messages\":[{\"role\":\"user\",\"content\":\"Hello\"}]}'\n\n# Response: 402 Payment Required\n# {\n#   \"price\": \"0.001\",\n#   \"currency\": \"USDC\",\n#   \"chain\": \"base\",\n#   \"recipient\": \"0xcCb92A101347406ed140b18C4Ed27276844CD9D7\",\n#   \"paymentId\": \"pay_abc123\"\n# }\n\n# 2. Agent pays on Base, retries with proof\ncurl https://api.agentapihub.com/api/gemini/chat/completions \\\n  -H \"Content-Type: application/json\" \\\n  -H \"X-Payment-Proof: 0x...\" \\\n  -d '{\"model\":\"gemini-2.0-flash\",\"messages\":[{\"role\":\"user\",\"content\":\"Hello\"}]}'\n\nAvailable x402 APIs\nAPI\tEndpoint\tPrice\nGemini Chat\t/api/gemini/chat/completions\t~$0.001/req\nGemini Embeddings\t/api/gemini/embeddings\t~$0.0005/req\nWhy x402?\nNo API keys — Agents self-provision access\nPay-per-use — No subscriptions, no minimums\nCrypto-native — USDC on Base (fast, cheap txns)\nAgent-friendly — Programmatic payments without human bottleneck\nQuick Search\nBy Category\nCategory\tAPIs\tExample\nSearch\tBrave, Serper, Exa, Tavily, Perplexity\tWeb search with AI summaries\nAI & ML\tOpenAI, Claude, Gemini, Groq, Replicate\tLLM inference, image gen\nCommunication\tResend, Twilio, Slack, Discord, Telegram\tEmail, SMS, messaging\nDatabase\tSupabase, Pinecone, Qdrant, Neon, Upstash\tSQL, vectors, KV store\nPayments\tStripe, Lemon Squeezy, PayPal\tPayment processing\nScraping\tFirecrawl, Browserbase, Apify\tWeb scraping, automation\nDeveloper\tGitHub, Vercel, Linear, Sentry\tCode, deploy, issues\nProductivity\tNotion, Google Calendar, Todoist\tTasks, scheduling\nMCP-Compatible APIs\n\nAll 50+ APIs in the directory are MCP-compatible. Filter with ?mcp=true.\n\nAPI Access\nJSON Endpoint\n# Fetch all APIs\ncurl https://agentapihub.com/api/v1/apis\n\n# Search by capability\ncurl \"https://agentapihub.com/api/v1/apis?q=send+email&mcp=true\"\n\n# Filter by category\ncurl \"https://agentapihub.com/api/v1/apis?category=ai\"\n\nResponse Format\n{\n  \"id\": \"resend\",\n  \"name\": \"Resend\",\n  \"description\": \"Modern email API for developers\",\n  \"category\": \"communication\",\n  \"provider\": \"Resend\",\n  \"docs\": \"https://resend.com/docs\",\n  \"auth\": \"api_key\",\n  \"pricing\": \"freemium\",\n  \"pricingDetails\": \"3,000 free/mo, then $20/mo\",\n  \"rateLimit\": \"10 req/sec\",\n  \"mcpCompatible\": true,\n  \"examplePrompt\": \"Send an email notification using Resend\",\n  \"latency\": \"fast\",\n  \"reliability\": 99.9,\n  \"tags\": [\"email\", \"transactional\", \"notifications\"]\n}\n\nTop APIs by Category\nSearch\nBrave Search - Privacy-focused, 2k free/mo\nExa - Neural/semantic search for AI\nTavily - Built specifically for AI agents\nAI & ML\nOpenAI - GPT-4, DALL-E, Whisper\nAnthropic Claude - Best for reasoning/coding\nGroq - Fastest inference (500+ tok/sec)\nCommunication\nResend - Simple email API, 3k free/mo\nTwilio - SMS/voice, industry standard\nSlack/Discord/Telegram - Team messaging\nDatabase\nSupabase - Postgres + auth + storage\nPinecone/Qdrant - Vector DBs for RAG\nUpstash - Serverless Redis\nUsage Examples\n# Find an API for sending emails\nSearch AgentAPI for \"email\" → Returns Resend, SendGrid, Twilio\n\n# Find vector databases for RAG\nSearch AgentAPI for \"vector embeddings\" → Returns Pinecone, Qdrant, Weaviate\n\n# Find fast LLM inference\nSearch AgentAPI for category \"ai\" + filter by latency → Returns Groq, Gemini Flash\n\nContributing\n\nSubmit new APIs at https://agentapihub.com (Submit API link in footer).\n\nBuilt By\n\nGizmoLab (@gizmolab_) — gizmolab.io"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/gizmo-dev/agentapi-hub",
    "publisherUrl": "https://clawhub.ai/gizmo-dev/agentapi-hub",
    "owner": "gizmo-dev",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/agentapi-hub",
    "downloadUrl": "https://openagent3.xyz/downloads/agentapi-hub",
    "agentUrl": "https://openagent3.xyz/skills/agentapi-hub/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agentapi-hub/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agentapi-hub/agent.md"
  }
}