api-reference-documentation

API Reference Documentation

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "api-reference-documentation" with this command: npx skills add secondsky/claude-skills/secondsky-claude-skills-api-reference-documentation

API Reference Documentation

Create comprehensive API documentation for developer integration.

OpenAPI 3.0 Specification

openapi: 3.0.3 info: title: E-Commerce API version: 1.0.0 description: API for managing products and orders contact: email: api@example.com

servers:

security:

  • bearerAuth: []

paths: /products: get: summary: List products tags: [Products] parameters: - name: limit in: query schema: { type: integer, default: 20 } - name: category in: query schema: { type: string } responses: '200': description: Product list content: application/json: schema: $ref: '#/components/schemas/ProductList'

components: securitySchemes: bearerAuth: type: http scheme: bearer bearerFormat: JWT

schemas: Product: type: object required: [id, name, price] properties: id: { type: string, format: uuid } name: { type: string, maxLength: 200 } price: { type: number, minimum: 0 } description: { type: string }

Documentation Checklist

  • All endpoints documented with examples

  • Authentication methods explained

  • Error responses specified

  • Rate limits documented

  • Pagination explained

  • Webhooks documented (if applicable)

  • SDK examples in multiple languages

Best Practices

  • Use OpenAPI 3.0+ specification

  • Include request/response examples

  • Document all parameters and headers

  • Provide authentication examples

  • Enable interactive API exploration

  • Maintain version documentation

  • Include migration guides for breaking changes

Tools

  • Swagger Editor / Swagger UI

  • Redoc

  • Postman Documentation

  • Stoplight

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

tailwind-v4-shadcn

No summary provided by upstream source.

Repository SourceNeeds Review
General

aceternity-ui

No summary provided by upstream source.

Repository SourceNeeds Review
General

playwright

No summary provided by upstream source.

Repository SourceNeeds Review
General

zod

No summary provided by upstream source.

Repository SourceNeeds Review