{ "opencollection": "1.0.0", "info": { "name": "Napkin AI Visuals API", "version": "1.1.16" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Visuals", "type": "folder" }, "items": [ { "info": { "name": "Create visual request", "type": "http" }, "http": { "method": "POST", "url": "https://api.napkin.ai/v1/visual", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new visual content generation request. The request is processed asynchronously; use the returned request id to poll status." }, { "info": { "name": "Get visual request status", "type": "http" }, "http": { "method": "GET", "url": "https://api.napkin.ai/v1/visual/:request-id/status", "params": [ { "name": "request-id", "value": "", "type": "path" } ] }, "docs": "Retrieve the current status and details of a visual request. Status is one of pending, completed, or failed. When completed, the response includes a generated_files array with download links and metadata. Status and file URLs expire 30 minutes after generation." }, { "info": { "name": "Download generated file", "type": "http" }, "http": { "method": "GET", "url": "https://api.napkin.ai/v1/visual/:request-id/file/:file-id", "params": [ { "name": "request-id", "value": "", "type": "path" }, { "name": "file-id", "value": "", "type": "path" } ] }, "docs": "Download a specific file generated by a completed visual request. The complete download URL is provided in the generated_files array from the status endpoint. Authentication headers are required. Files are only available for requests with status completed and expire 30 minutes after generation." } ] } ], "bundled": true }