Skip to main content
GET
/
publisher
/
{publisher_id}
/
authors
Author Listing
curl --request GET \
  --url https://cds.thepublive.com/publisher/{publisher_id}/authors/ \
  --header 'Authorization: Basic <encoded-value>'
{
  "status": "ok",
  "data": [
    {
      "id": 1,
      "name": "Jane Doe",
      "slug": "jane-doe",
      "email": "jane@publication.com",
      "description": "Senior correspondent covering technology and business.",
      "linkedin": "https://linkedin.com/in/janedoe",
      "twitter": "https://twitter.com/janedoe",
      "instagram": "",
      "facebook": "",
      "avatar": "https://cdn.publive.com/avatars/jane-doe.jpg",
      "created_at": "2025-01-15T10:00:00Z",
      "updated_at": "2026-01-20T14:30:00Z"
    }
  ],
  "message": "",
  "page_no": 1,
  "per_page": 10
}
Returns a paginated list of all authors with their profile information and social links.
publisher_id
string
required
Your Publisher ID
page
integer
default:"1"
Page number (max: 1000)
limit
integer
default:"10"
Items per page (max: 50)
{
  "status": "ok",
  "data": [
    {
      "id": 1,
      "name": "Jane Doe",
      "slug": "jane-doe",
      "email": "jane@publication.com",
      "description": "Senior correspondent covering technology and business.",
      "linkedin": "https://linkedin.com/in/janedoe",
      "twitter": "https://twitter.com/janedoe",
      "instagram": "",
      "facebook": "",
      "avatar": "https://cdn.publive.com/avatars/jane-doe.jpg",
      "created_at": "2025-01-15T10:00:00Z",
      "updated_at": "2026-01-20T14:30:00Z"
    }
  ],
  "message": "",
  "page_no": 1,
  "per_page": 10
}