{ "opencollection": "1.0.0", "info": { "name": "Ghost Admin Authors API", "version": "5.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Authors", "type": "folder" }, "items": [ { "info": { "name": "Browse authors", "type": "http" }, "http": { "method": "GET", "url": "https://{site}.ghost.io/ghost/api/admin/authors/", "params": [ { "name": "include", "value": "", "type": "query", "description": "Include a count of posts associated with each author." }, { "name": "fields", "value": "", "type": "query", "description": "Comma-separated list of fields to return in the response. Use this to limit the size of the response by only requesting the fields you need." }, { "name": "filter", "value": "", "type": "query", "description": "Apply fine-grained filters using Ghost's NQL query language. Examples include featured:true, tag:getting-started, visibility:public, and combinations using plus and comma operators." }, { "name": "limit", "value": "", "type": "query", "description": "Maximum number of resources to return per page. Defaults to 15. Use all to return all resources without pagination." }, { "name": "page", "value": "", "type": "query", "description": "Page number for paginated results. Defaults to 1." }, { "name": "order", "value": "", "type": "query", "description": "Field and direction to order results by, for example published_at DESC or title ASC." } ] }, "docs": "Retrieve a paginated list of authors (staff users) for the publication. Supports including a count of posts per author using the include=count.posts parameter." }, { "info": { "name": "Read an author by ID", "type": "http" }, "http": { "method": "GET", "url": "https://{site}.ghost.io/ghost/api/admin/authors/:id/", "params": [ { "name": "id", "value": "", "type": "path", "description": "The unique identifier of the resource" }, { "name": "include", "value": "", "type": "query", "description": "Include a count of posts associated with each author." }, { "name": "fields", "value": "", "type": "query", "description": "Comma-separated list of fields to return in the response. Use this to limit the size of the response by only requesting the fields you need." } ] }, "docs": "Retrieve a single author by their unique identifier." }, { "info": { "name": "Read an author by slug", "type": "http" }, "http": { "method": "GET", "url": "https://{site}.ghost.io/ghost/api/admin/authors/slug/:slug/", "params": [ { "name": "slug", "value": "", "type": "path", "description": "The URL slug of the resource" }, { "name": "include", "value": "", "type": "query", "description": "Include a count of posts associated with each author." }, { "name": "fields", "value": "", "type": "query", "description": "Comma-separated list of fields to return in the response. Use this to limit the size of the response by only requesting the fields you need." } ] }, "docs": "Retrieve a single author by their URL slug." } ] } ], "bundled": true }