← 返回 Skills 市场
gizmo-dev

AgentAPI Hub

作者 Gizmolab · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
912
总下载
0
收藏
2
当前安装
1
版本数
在 OpenClaw 中安装
/install agentapi-hub
功能描述
Browse and search the AgentAPI directory - a curated database of APIs designed for AI agents. Find MCP-compatible APIs for search, AI, communication, databas...
使用说明 (SKILL.md)

AgentAPI

A curated directory of APIs designed for AI agents. Machine-readable. MCP-compatible. Agent-accessible.

Website: https://agentapihub.com
Billing API: https://api.agentapihub.com
Docs: https://api.agentapihub.com/api/docs

x402 Pay-Per-Use Billing

AgentAPI supports x402 — a payment protocol that lets AI agents pay for API calls with USDC on Base. No API keys required.

How It Works

  1. Agent calls API endpoint (e.g., /api/gemini/chat/completions)
  2. Server returns 402 Payment Required with price + wallet address
  3. Agent sends USDC payment on Base chain
  4. Agent retries with payment proof in header
  5. Server verifies payment, proxies request, returns response

Example Flow

# 1. Initial request returns 402
curl https://api.agentapihub.com/api/gemini/chat/completions \
  -H "Content-Type: application/json" \
  -d '{"model":"gemini-2.0-flash","messages":[{"role":"user","content":"Hello"}]}'

# Response: 402 Payment Required
# {
#   "price": "0.001",
#   "currency": "USDC",
#   "chain": "base",
#   "recipient": "0xcCb92A101347406ed140b18C4Ed27276844CD9D7",
#   "paymentId": "pay_abc123"
# }

# 2. Agent pays on Base, retries with proof
curl https://api.agentapihub.com/api/gemini/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-Payment-Proof: 0x..." \
  -d '{"model":"gemini-2.0-flash","messages":[{"role":"user","content":"Hello"}]}'

Available x402 APIs

API Endpoint Price
Gemini Chat /api/gemini/chat/completions ~$0.001/req
Gemini Embeddings /api/gemini/embeddings ~$0.0005/req

Why x402?

  • No API keys — Agents self-provision access
  • Pay-per-use — No subscriptions, no minimums
  • Crypto-native — USDC on Base (fast, cheap txns)
  • Agent-friendly — Programmatic payments without human bottleneck

Quick Search

By Category

Category APIs Example
Search Brave, Serper, Exa, Tavily, Perplexity Web search with AI summaries
AI & ML OpenAI, Claude, Gemini, Groq, Replicate LLM inference, image gen
Communication Resend, Twilio, Slack, Discord, Telegram Email, SMS, messaging
Database Supabase, Pinecone, Qdrant, Neon, Upstash SQL, vectors, KV store
Payments Stripe, Lemon Squeezy, PayPal Payment processing
Scraping Firecrawl, Browserbase, Apify Web scraping, automation
Developer GitHub, Vercel, Linear, Sentry Code, deploy, issues
Productivity Notion, Google Calendar, Todoist Tasks, scheduling

MCP-Compatible APIs

All 50+ APIs in the directory are MCP-compatible. Filter with ?mcp=true.

API Access

JSON Endpoint

# Fetch all APIs
curl https://agentapihub.com/api/v1/apis

# Search by capability
curl "https://agentapihub.com/api/v1/apis?q=send+email&mcp=true"

# Filter by category
curl "https://agentapihub.com/api/v1/apis?category=ai"

Response Format

{
  "id": "resend",
  "name": "Resend",
  "description": "Modern email API for developers",
  "category": "communication",
  "provider": "Resend",
  "docs": "https://resend.com/docs",
  "auth": "api_key",
  "pricing": "freemium",
  "pricingDetails": "3,000 free/mo, then $20/mo",
  "rateLimit": "10 req/sec",
  "mcpCompatible": true,
  "examplePrompt": "Send an email notification using Resend",
  "latency": "fast",
  "reliability": 99.9,
  "tags": ["email", "transactional", "notifications"]
}

Top APIs by Category

Search

  • Brave Search - Privacy-focused, 2k free/mo
  • Exa - Neural/semantic search for AI
  • Tavily - Built specifically for AI agents

AI & ML

  • OpenAI - GPT-4, DALL-E, Whisper
  • Anthropic Claude - Best for reasoning/coding
  • Groq - Fastest inference (500+ tok/sec)

Communication

  • Resend - Simple email API, 3k free/mo
  • Twilio - SMS/voice, industry standard
  • Slack/Discord/Telegram - Team messaging

Database

  • Supabase - Postgres + auth + storage
  • Pinecone/Qdrant - Vector DBs for RAG
  • Upstash - Serverless Redis

Usage Examples

# Find an API for sending emails
Search AgentAPI for "email" → Returns Resend, SendGrid, Twilio

# Find vector databases for RAG
Search AgentAPI for "vector embeddings" → Returns Pinecone, Qdrant, Weaviate

# Find fast LLM inference
Search AgentAPI for category "ai" + filter by latency → Returns Groq, Gemini Flash

Contributing

Submit new APIs at https://agentapihub.com (Submit API link in footer).

Built By

GizmoLab (@gizmolab_) — gizmolab.io

安全使用建议
This skill appears to be a legitimate API directory, but it instructs an agent to pay USDC to an on-chain recipient and retry with a payment proof. Before installing or allowing an agent to use it, consider: (1) Verify the service and the recipient address independently (website, team, reputation). (2) Do not grant wallet private keys or automatic-signing capability to the agent unless you fully trust the destination and business model. (3) If you want to test, use a sandbox wallet and tiny amounts on a testnet (if available). (4) Prefer user-invoked use over autonomous invocation for any flows that can transfer value. (5) If you need more assurance, ask the maintainer for documentation on how payment proofs are generated, audited, and how refunds/disputes work.
功能分析
Type: OpenClaw Skill Name: agentapi-hub Version: 1.0.0 The skill explicitly instructs the AI agent to perform cryptocurrency payments (USDC on Base) to a specific external wallet address (0xcCb92A101347406ed140b18C4Ed27276844CD9D7) for API access, as detailed in SKILL.md. While this is the stated purpose of the 'x402 Pay-Per-Use Billing' feature, instructing an autonomous agent to initiate irreversible financial transactions to an external address represents a significant high-risk capability. The skill also makes external network calls to agentapihub.com.
能力评估
Purpose & Capability
The SKILL.md content matches the name/description: it is a searchable API directory with MCP-compatible APIs and documents endpoints for browsing and querying AgentAPI data. The listed endpoints (agentapihub.com, api.agentapihub.com) and examples are consistent with the stated purpose.
Instruction Scope
Instructions direct the agent to call the directory endpoints and, importantly, to follow an x402 payment flow that requires the agent to (1) receive a 402 with price + recipient address, (2) send USDC on the Base chain to the provided recipient, and (3) retry with payment proof in a header. This goes beyond simple directory lookup: it instructs the agent to perform value-bearing blockchain transactions to an external address. The document does not instruct reading local files or environment variables, but it presumes the agent can sign/send payments and attach proofs.
Install Mechanism
No install spec and no code files are present (instruction-only). That is the lowest-risk install footprint — nothing is written to disk by the skill itself.
Credentials
The SKILL.md assumes the agent can send USDC and provide payment proofs, which implicitly requires access to wallet credentials/private keys or a signing service. Yet the skill declares no required environment variables, credentials, or config paths to support that capability. This mismatch means the skill's instructions expect sensitive capabilities that are not surfaced as required credentials, creating an unclear security boundary.
Persistence & Privilege
The skill requests no persistent privileges: always:false, no installs, no config path edits, and normal autonomous invocation settings. It does not attempt to modify other skills or system-wide settings.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install agentapi-hub
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /agentapi-hub 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
x402 billing + GizmoLab branding
元数据
Slug agentapi-hub
版本 1.0.0
许可证
累计安装 2
当前安装数 2
历史版本数 1
常见问题

AgentAPI Hub 是什么?

Browse and search the AgentAPI directory - a curated database of APIs designed for AI agents. Find MCP-compatible APIs for search, AI, communication, databas... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 912 次。

如何安装 AgentAPI Hub?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install agentapi-hub」即可一键安装,无需额外配置。

AgentAPI Hub 是免费的吗?

是的,AgentAPI Hub 完全免费(开源免费),可自由下载、安装和使用。

AgentAPI Hub 支持哪些平台?

AgentAPI Hub 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 AgentAPI Hub?

由 Gizmolab(@gizmo-dev)开发并维护,当前版本 v1.0.0。

💬 留言讨论