Publish Api

👤 ivangdavila 📦 v1.3.4 ⭐ 4.5 ⬇️ 6.1K 下载
📚 知识管理 免费

📖 技能介绍


name: API (Stripe, OpenAI, Notion & 100+ more) slug: api version: 1.3.4 homepage: https://clawic.com/skills/api description: REST API reference for 147 services. Authentication patterns, endpoints, rate limits, and common gotchas. changelog: Documentation-only skill with API reference files. metadata: {"clawdbot":{"emoji":"🔌","requires":{"anyBins":["curl","jq"]},"os":["linux","darwin","win32"]}}


API

REST API reference documentation. 147 services with authentication, endpoints, and gotchas.

Setup

On first use, read setup.md for usage guidelines.

When to Use

User asks about integrating a third-party API. This skill provides: - Authentication documentation - Endpoint reference with curl examples - Rate limits and pagination patterns - Common mistakes to avoid

本技能来自小葱技能站7w4.net。

Architecture

apis/                    # API reference files by category
  ├── ai-ml.md           # OpenAI, Anthropic, Cohere, etc.
  ├── payments.md        # Stripe, PayPal, Square, etc.
  ├── communication.md   # Twilio, SendGrid, Slack, etc.
  └── ...

~/api/                   # User preferences (optional)
  └── preferences.md     # Preferred language for examples

Quick Reference

File Purpose
setup.md Usage guidelines
credentials.md Multi-account credential naming ({SERVICE}_{ACCOUNT}_{TYPE})
auth.md Authentication patterns
pagination.md Pagination patterns
resilience.md Error handling patterns
webhooks.md Webhook patterns

API Categories

Category File Services
AI/ML apis/ai-ml.md anthropic, openai, cohere, groq, mistral, perplexity, huggingface, replicate, stability, elevenlabs, deepgram, assemblyai, together, anyscale
Payments apis/payments.md stripe, paypal, square, plaid, chargebee, paddle, lemonsqueezy, recurly, wise, coinbase, binance, alpaca, polygon
Communication apis/communication.md twilio, sendgrid, mailgun, postmark, resend, mailchimp, slack, discord, telegram, zoom
Realtime apis/realtime.md sendbird, stream-chat, pusher, ably, onesignal, courier, knock, novu
CRM apis/crm.md salesforce, hubspot, pipedrive, attio, close, apollo, outreach, gong
Marketing apis/marketing.md drift, crisp, front, customer-io, braze, iterable, klaviyo
Developer apis/developer.md github, gitlab, bitbucket, vercel, netlify, railway, render, fly, digitalocean, heroku, cloudflare, circleci, pagerduty, launchdarkly, split, statsig
Database apis/database.md supabase, firebase, planetscale, neon, upstash, mongodb, fauna, xata, convex, appwrite
Auth apis/auth-providers.md clerk, auth0, workos, stytch
Media apis/media.md cloudinary, mux, bunny, imgix, uploadthing, uploadcare, transloadit, vimeo, youtube, spotify, unsplash, pexels, giphy, tenor
Social apis/social.md twitter, linkedin, instagram, tiktok, pinterest, reddit, twitch
Productivity apis/productivity.md notion, airtable, google-sheets, google-drive, google-calendar, dropbox, linear, jira, asana, trello, monday, clickup, figma, calendly, cal, loom, typeform
Business apis/business.md shopify, docusign, hellosign, bitly, dub
Geo apis/geo.md openweather, mapbox, google-maps
Support apis/support.md intercom, zendesk, freshdesk, helpscout
Analytics apis/analytics.md mixpanel, amplitude, posthog, segment, sentry, datadog, algolia

How to Navigate API Files

Each category file contains multiple APIs. Use the index at the top of each file:

  1. Read the index first — Each file starts with an index table showing API names and line numbers
  2. Jump to specific API — Use the line number to read only that section (50-100 lines each)
  3. Example: bash # Read index head -20 apis/ai-ml.md # Read specific API section sed -n '119,230p' apis/ai-ml.md

Core Rules

  1. Find the right file first — Use the API Categories table to locate the service.

  2. Read the index, then jump — Each file has an index. Read only the section you need.

  3. Include Content-Type — POST/PUT/PATCH requests need Content-Type: application/json.

  4. Handle rate limits — Check X-RateLimit-Remaining header. Implement backoff on 429.

  5. Validate responses — Some APIs return 200 with error in body. Check response structure.

  6. Use idempotency keys — For payments and critical operations.

Common Mistakes

  • Missing Content-Type: application/json on POST requests
  • API keys in URL query params (use headers instead)
  • Ignoring pagination (most APIs default to 10-25 items)
  • No retry logic for 429/5xx errors
  • Assuming HTTP 200 means success

Scope

This skill is documentation only. It provides: - API endpoint reference - Authentication patterns - Code examples for reference

The user manages their own API keys and runs commands themselves.

External Endpoints

This skill documents external APIs. Example endpoints shown are for the respective service providers (Stripe, OpenAI, etc.).

Install with clawhub install <slug> if user confirms:

  • http — HTTP request patterns
  • webhook — Webhook handling
  • json — JSON processing

Feedback

  • If useful: clawhub star api
  • Stay updated: clawhub sync

🤖 AI 评测

这个Skill文档质量很高,收录了147个常用API的参考资料,涵盖支付、AI、办公、开发等各个领域。文档分类清晰,查找方便,还包含很多实用的错误处理建议。不过部分内容是西班牙语写的,读起来可能有点吃力。总体来说,这是一个非常全面、实用的API参考手册,适合需要查询各种服务接口信息的开发者使用。

📊 多维度评分

适应性4.6
规范性4.4
有效性4.7
可靠性4.7
可信度4.3

📁 包含文件 (24 个)

📄 SKILL.md 5.3 KB
📄 _meta.json 122 B
📄 apis/ai-ml.md 34.1 KB
📄 apis/analytics.md 10.8 KB
📄 apis/auth-providers.md 10.5 KB
📄 apis/business.md 12.9 KB
📄 apis/communication.md 19.2 KB
📄 apis/crm.md 19.9 KB
📄 apis/database.md 24.2 KB
📄 apis/developer.md 35.3 KB
📄 apis/geo.md 5.7 KB
📄 apis/marketing.md 19.7 KB
📄 apis/media.md 27.6 KB
📄 apis/payments.md 23.8 KB
📄 apis/productivity.md 34.3 KB
📄 apis/realtime.md 18.9 KB
📄 apis/social.md 15.8 KB
📄 apis/support.md 9.3 KB
📄 auth.md 1.6 KB
📄 credentials.md 1.2 KB
📄 pagination.md 1.7 KB
📄 resilience.md 1.7 KB
📄 setup.md 921 B
📄 webhooks.md 1.7 KB