Turns REST API documentation into a runnable curl, fetch, or code example with required headers, request body, and placeholders for secrets. Use when the user wants to generate a request from API docs, an endpoint, or a Swagger/OpenAPI spec — "give me a curl for this", "show a fetch example", "how do I call this API".
Turn the documented API endpoint into the smallest runnable example the user can paste and run — curl, fetch, or a language-specific snippet — complete with the required headers, request body shape, and placeholders for every secret. Work only from what the docs show; don't invent undocumented fields or claim a parameter is required when the docs don't say so.
$API_KEY or <account-id> for secrets and private values.Return concise headings and include these sections when they fit: Runnable example, Required inputs, Expected response, Common mistakes. Preserve exact endpoint paths, header names, and field names. Be specific but don't overclaim; never include real secrets, and if the docs are incomplete, say what's missing and give the best supported example. Respond in the same language as the user's request.
Docs (an endpoint that creates a charge):
POST /v1/charges— requiresAuthorization: Bearer <key>. Body:amount(integer, required),currency(string, required),description(string, optional).
Example:
Runnable example (curl):
bashcurl https://api.example.com/v1/charges \ -H "Authorization: Bearer $API_KEY" \ -H "Content-Type: application/json" \ -d '{"amount": 2000, "currency": "usd", "description": "Test charge"}'Required inputs:
$API_KEY(secret bearer token);amountin the smallest currency unit; a supportedcurrencycode.Expected response:
200with the created charge object, including itsidandstatus.Common mistakes: Omitting
Content-Type: application/json(the body is ignored); sendingamountas a decimal instead of an integer; a stale key returns401.