api-documentation-writer

api-documentation-writer is a skill for Claude Code, Codex from pinkpixel-dev/skills-collection-1. It costs 63 tokens per session (1,794 once invoked), scanned A, original, Apache-2.0.

An API documentation writing guide for producing reference material about endpoints, authentication, errors, examples, and software development kits. It can also create OpenAPI or Swagger specifications, which describe an API in a standard format.

In plain words
What is it for?
Use it to write API overviews, authentication instructions, endpoint references, request and response examples, and usage guidelines.
Why use it?
It helps turn incomplete API details into documentation that developers can follow when integrating with the service.

Skill for Claude CodeCodex

Install

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.

agentmods
npx agentmods add skills/pinkpixel-dev/skills-collection-1/api-documentation-writer
Any agent
npx skills add pinkpixel-dev/skills-collection-1 --skill api-documentation-writer
Clone the repo
git clone --depth 1 https://github.com/pinkpixel-dev/skills-collection-1

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for api-documentation-writer

README.md
[![agentmods](https://agentmods.dev/badge/skills/pinkpixel-dev/skills-collection-1/api-documentation-writer.svg)](https://agentmods.dev/skills/pinkpixel-dev/skills-collection-1/api-documentation-writer)
Your own site
<a href="https://agentmods.dev/skills/pinkpixel-dev/skills-collection-1/api-documentation-writer"><img src="https://agentmods.dev/badge/skills/pinkpixel-dev/skills-collection-1/api-documentation-writer.svg" alt="Measured on agentmods" height="20"></a>
Per session 63 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,794 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00063 $0.01794
Opus 5 $0.00032 $0.00897
Sonnet 5 $0.00013 $0.00359
Haiku 4.5 $0.00006 $0.00179

Measured 2d ago against content hash dafe57dc8808, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

api-documentation-writer scanned grade A with 1 finding 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 2d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- Example request (curl, JavaScript, Python)
Origin

Copies of this mod

2 near-identical copies found in the catalogue:

SKILLS/api-documentation-writer/SKILL.md · 295 lines

How it starts

The opening of the file, as written. The whole thing — 295 lines — stays where its author put it; the contents beside it link to each section on GitHub.

API Documentation Writer

Create comprehensive, developer-friendly API documentation.

Instructions

When a user needs API documentation:

  1. Gather API Information:

    • API type (REST, GraphQL, WebSocket, gRPC)?
    • Authentication method (API key, OAuth, JWT)?
    • Base URL and versioning strategy?
    • Available endpoints and their purposes?
    • Request/response formats?
    • Rate limiting or usage restrictions?
  2. Generate Complete Documentation Structure:

    Overview Section:

    • What the API does (1-2 sentences)
    • Key capabilities
    • Getting started checklist
    • Support and resources

    Authentication:

    • How to obtain credentials
    • Where to include auth tokens
    • Example authenticated request
    • Token refresh process (if applicable)

    Base URL & Versioning:

    • Production and sandbox URLs
    • Version format (path, header, query param)
    • Current version and changelog link

    Endpoints (for each endpoint):

    • HTTP method and path
    • Description of what it does
    • Path parameters
    • Query parameters
    • Request headers
    • Request body schema
    • Response codes and meanings
    • Response body schema
    • Example request (curl, JavaScript, Python)
    • Example response (formatted JSON)

    Error Handling:

    • Standard error response format
    • Common error codes and meanings
    • Troubleshooting guide

    Rate Limiting:

    • Limits and windows
    • Headers to check
    • How to handle rate limit errors

    SDKs & Libraries:

    • Official client libraries
    • Community libraries
    • Installation instructions

    Webhooks (if applicable):

    • Available webhook events
    • Setup process
    • Payload examples
    • Security verification
  3. Format Output (REST API example):

    # [API Name] Documentation
    
    ## Overview
    
    [Brief description of what the API does]
    
    **Base URL**: `https://api.example.com/v1`
    
    **Authentication**: API Key via `Authorization` header
    
    ## Quick Start
    
    1. [Step 1]
    2. [Step 2]
    3. [Step 3]
    
    ## Authentication
    
    All requests require an API key in the `Authorization` header:
    
    

    Authorization: Bearer YOUR_API_KEY

    
    Get your API key from [dashboard link].
    
    ## Endpoints
    
    ### GET /resource
    
    Retrieve a list of resources.
    
    **Parameters**:
    - `limit` (optional, integer): Number of results (max 100, default 10)
    - `offset` (optional, integer): Pagination offset (default 0)
    - `filter` (optional, string): Filter by field
    
    **Request Example**:
    ```bash
    curl -X GET "https://api.example.com/v1/resource?limit=10" \
      -H "Authorization: Bearer YOUR_API_KEY"
    

    Response (200 OK):

    {
      "data": [
        {
          "id": "123",
          "name": "Example",
          "created_at": "2024-01-15T10:00:00Z"
        }
      ],
      "total": 100,
      "limit": 10,
      "offset": 0
    }
    

    Response Codes:

    • 200 - Success
    • 400 - Bad request (invalid parameters)
    • 401 - Unauthorized (invalid API key)
    • 429 - Rate limit exceeded
    • 500 - Server error

    POST /resource

    Create a new resource.

    Request Body:

    {
      "name": "string (required)",
      "description": "string (optional)",
      "metadata": "object (optional)"
    }
    

    Request Example:

    curl -X POST "https://api.example.com/v1/resource" \
      -H "Authorization: Bearer YOUR_API_KEY" \
      -H "Content-Type: application/json" \
      -d '{
        "name": "My Resource",
        "description": "A test resource"
      }'
    

    Response (201 Created):

    {
      "id": "124",
      "name": "My Resource",
      "description": "A test resource",
      "created_at": "2024-01-15T10:30:00Z"
    }
    

    Error Handling

    All errors follow this format:

    {
      "error": {
        "code": "invalid_request",
        "message": "The 'name' field is required",
        "details": {
          "field": "name"
        }
      }
    }
    

    Common Error Codes:

    • invalid_request - Malformed request
    • authentication_failed - Invalid API key
    • not_found - Resource doesn't exist
    • rate_limit_exceeded - Too many requests
    • internal_error - Server error

    Rate Limiting

    Limits: 1000 requests per hour

    Headers:

    • X-RateLimit-Limit: Total requests allowed
    • X-RateLimit-Remaining: Requests remaining
    • X-RateLimit-Reset: Timestamp when limit resets

    When rate limited, you'll receive a 429 status code.

    Code Examples

    JavaScript (Node.js)

    const response = await fetch('https://api.example.com/v1/resource', {
      headers: {
        'Authorization': 'Bearer YOUR_API_KEY'
      }
    });
    const data = await response.json();
    

    Python

    import requests
    

Read the full file on GitHub · 295 lines

Changes

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.

  1. 2d ago First seen · 295 lines · 63 tokens per session scan A dafe57dc8808

Subscribe to this mod's changes

api-documentation-writer is a skill published in the GitHub repository pinkpixel-dev/skills-collection-1 (7 stars, last pushed 26d ago), licensed Apache-2.0. It adds 63 tokens to every session and 1,794 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

agent-memory-mcp

A hybrid memory system that provides persistent, searchable knowledge management for AI agents (Architecture, Patterns, Decisions).

lingxling/awesome-skills-cn · 26 tokens

find-awesome-tools

Discovers curated tools, libraries, frameworks, and resources across thousands of awesome-lists. Use this skill whenever the user is shopping for options in a technology space — "what are good Rust CLI argument parsers", "recommend React state management libraries", "popular Python web frameworks", "tools for building…

bh-rat/context-awesome · 195 tokens

claude-api

Reference for the Claude API / Anthropic SDK — model ids, pricing, params, streaming, tool use, MCP, agents, caching, token counting, model migration. TRIGGER — read BEFORE opening the target file; don't skip because it "looks like a one-liner" — whenever: the prompt names Claude/Anthropic in any form (Claude…

lingxling/awesome-skills-cn · 294 tokens

docx

Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when…

lingxling/awesome-skills-cn · 168 tokens

algorithmic-art

Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright…

lingxling/awesome-skills-cn · 62 tokens

add-app-clip

Add an iOS App Clip target to an Expo app. Use when the user mentions App Clip, AASA, apple-app-site-association, appclips, smart app banner, or wants to ship a lightweight iOS Clip invoked from a URL alongside their parent app.

lingxling/awesome-skills-cn · 59 tokens