← Back to Skills Marketplace
mbrown4123

Api Tmp

by mbrown4123 · GitHub ↗ · v1.0.0 · MIT-0
linuxdarwinwin32 ⚠ suspicious
31
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install api-tmp
Description
REST API reference for 147 services. Authentication patterns, endpoints, rate limits, and common gotchas.
README (SKILL.md)

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

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

Related Skills

Install with clawhub install \x3Cslug> if user confirms:

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

Feedback

  • If useful: clawhub star api
  • Stay updated: clawhub sync
Usage Guidance
Before installing, verify that api-tmp is the intended package and that its owner/version match the published skill you expect. Inspect the media and payments docs for any real embedded API keys, and treat all curl examples as reference only—replace placeholders with your own scoped test credentials and avoid running mutating requests without review.
Capability Analysis
Type: OpenClaw Skill Name: api-tmp Version: 1.0.0 The 'api-tmp' skill bundle is a comprehensive, documentation-only reference for 147 REST APIs across various categories like AI, payments, and CRM. It provides authentication patterns, endpoint examples (primarily using curl), and detailed guides on common integration pitfalls (e.g., 'auth.md', 'webhooks.md', and 'resilience.md'). The instructions in 'SKILL.md' explicitly state that the skill is for documentation purposes only and that users are responsible for managing their own credentials and executing commands. No malicious code, data exfiltration patterns, or harmful prompt injections were found.
Capability Tags
cryptorequires-walletcan-make-purchasesrequires-oauth-tokenrequires-sensitive-credentialsposts-externally
Capability Assessment
Purpose & Capability
The stated purpose is coherent: API authentication, endpoint, rate-limit, and curl reference documentation. The files include examples for high-impact third-party services, but SKILL.md says the skill is documentation only and that users manage their own keys and run commands themselves.
Instruction Scope
Instructions focus on reading reference files and examples, with no automatic execution shown. However, some examples are mutating API calls, so users should treat them as reference only and not run them blindly.
Install Mechanism
There is no install spec or code, which lowers execution risk, but the registry identity does not match the embedded SKILL.md/_meta identity, creating provenance ambiguity.
Credentials
curl/jq are proportionate for API documentation, and no user credentials are required by metadata. The concern is that the static scan reports hardcoded credential-like literals in media and payments reference files.
Persistence & Privilege
No background process, privileged install, local auth-store access, or persistent agent behavior is shown. The only mentioned local state is an optional ~/api/preferences.md file for user preferences.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install api-tmp
  3. After installation, invoke the skill by name or use /api-tmp
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
- Initial release of API skill with documentation for 147 services. - Includes authentication patterns, endpoints, rate limits, and common mistakes for each API. - Organized reference files by category (AI/ML, Payments, Communication, etc.). - Provides setup instructions, quick reference, and navigation guidelines. - Documentation-only; does not execute API calls or manage API keys.
Metadata
Slug api-tmp
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Api Tmp?

REST API reference for 147 services. Authentication patterns, endpoints, rate limits, and common gotchas. It is an AI Agent Skill for Claude Code / OpenClaw, with 31 downloads so far.

How do I install Api Tmp?

Run "/install api-tmp" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Api Tmp free?

Yes, Api Tmp is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Api Tmp support?

Api Tmp is cross-platform and runs anywhere OpenClaw / Claude Code is available (linux, darwin, win32).

Who created Api Tmp?

It is built and maintained by mbrown4123 (@mbrown4123); the current version is v1.0.0.

💬 Comments