Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add Jignesh-Ponamwar/skills-mcp --skill api-integrationgit clone --depth 1 https://github.com/Jignesh-Ponamwar/skills-mcpWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/jignesh-ponamwar/skills-mcp/api-integration)<a href="https://agentmods.dev/skills/jignesh-ponamwar/skills-mcp/api-integration"><img src="https://agentmods.dev/badge/skills/jignesh-ponamwar/skills-mcp/api-integration/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/jignesh-ponamwar/skills-mcp/api-integration"><img src="https://agentmods.dev/badge/skills/jignesh-ponamwar/skills-mcp/api-integration.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00063 | $0.01447 |
| Opus 5 | $0.00032 | $0.00724 |
| Sonnet 5 | $0.00013 | $0.00289 |
| Haiku 4.5 | $0.00006 | $0.00145 |
Grade A, and why
api-integration scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 206 lines — stays where its author put it; the contents beside it link to each section on GitHub.
API Integration Skill
Overview
Build reliable integrations with REST APIs: authentication, pagination, rate limiting, retries, and error handling. Covers the full lifecycle from first call to production-ready client.
Step-by-Step Process
Step 1: Read the API Docs
Before writing any code, identify:
- Base URL and API version (
https://api.example.com/v2) - Authentication method (API key header, Bearer token, OAuth 2.0, Basic auth)
- Rate limits (requests per minute/hour, burst limits)
- Pagination style (offset/limit, cursor, page number, Link header)
- Error response format (status codes, error body schema)
Step 2: Set Up Authentication
API Key (header)
import httpx
headers = {
"Authorization": f"Bearer {API_KEY}",
"Content-Type": "application/json",
}
client = httpx.Client(base_url="https://api.example.com/v2", headers=headers)
OAuth 2.0 Client Credentials
import httpx
def get_access_token(client_id: str, client_secret: str, token_url: str) -> str:
response = httpx.post(token_url, data={
"grant_type": "client_credentials",
"client_id": client_id,
"client_secret": client_secret,
})
response.raise_for_status()
return response.json()["access_token"]
Basic Auth
client = httpx.Client(auth=(username, password))
Step 3: Make Requests with Retry Logic
import httpx
import time
from typing import Any
def api_request(
client: httpx.Client,
method: str,
path: str,
max_retries: int = 3,
**kwargs: Any,
) -> dict:
for attempt in range(max_retries):
try:
response = client.request(method, path, timeout=30, **kwargs)
if response.status_code == 429:
retry_after = int(response.headers.get("Retry-After", 60))
time.sleep(retry_after)
continue
response.raise_for_status()
return response.json()
except httpx.HTTPStatusError as e:
if e.response.status_code >= 500 and attempt < max_retries - 1:
time.sleep(2 ** attempt) # exponential backoff
continue
raise
raise RuntimeError(f"Failed after {max_retries} attempts")
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 8d ago First seen · 206 lines · 63 tokens per session scan A 23a08f9906bf
api-integration is a skill published in the GitHub repository Jignesh-Ponamwar/skills-mcp (7 stars, last pushed 3mo ago), licensed Apache-2.0. It adds 63 tokens to every session and 1,447 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
aws-serverless-eda
AWS serverless and event-driven architecture expert based on Well-Architected Framework. Use when building serverless APIs, Lambda functions, REST APIs, microservices, or async workflows.
agentmail
Email infrastructure for AI agents. Create accounts, send/receive emails, manage webhooks, and check karma balance via the AgentMail API.
api-rate-limit-handler
Implement bounded, idempotency-aware API throttling, backoff, and retry handling for 429 and transient 5xx responses.
api-security
Authorized security assessment of REST, GraphQL, WebSocket, and SOAP APIs: discovery, authentication and authorization flaws (BOLA/IDOR, JWT/OAuth), rate-limit testing, and a structured multi-phase methodology.
aria
Designs the data model, API contracts, and structural foundation of the system.
api-security-testing
API security testing workflow for REST and GraphQL APIs covering authentication, authorization, rate limiting, input validation, and security best practices.