{ "opencollection": "1.0.0", "info": { "name": "Dev.to Forem Articles Pages API", "version": "1.0.0" }, "request": { "auth": { "type": "apikey", "key": "api-key", "value": "{{api-key}}", "placement": "header" } }, "items": [ { "info": { "name": "Pages", "type": "folder" }, "items": [ { "info": { "name": "Show details for all pages", "type": "http" }, "http": { "method": "GET", "url": "https://dev.to/api/pages" }, "docs": "Retrieves all static pages on the platform. Requires admin-level API key." }, { "info": { "name": "Create a new page", "type": "http" }, "http": { "method": "POST", "url": "https://dev.to/api/pages", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new static page. Requires admin-level API key." }, { "info": { "name": "Show details for a page", "type": "http" }, "http": { "method": "GET", "url": "https://dev.to/api/pages/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The ID of the page." } ] }, "docs": "Retrieves a single static page by ID. Requires admin-level API key." }, { "info": { "name": "Update details for a page", "type": "http" }, "http": { "method": "PUT", "url": "https://dev.to/api/pages/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The ID of the page." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates an existing static page. Requires admin-level API key." }, { "info": { "name": "Remove a page", "type": "http" }, "http": { "method": "DELETE", "url": "https://dev.to/api/pages/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The ID of the page." } ] }, "docs": "Deletes a static page by ID. Requires admin-level API key." } ] } ], "bundled": true }