Skip to main content
GET
/
cms
/
v3
/
blogs
/
authors
Get all Blog Authors
curl --request GET \
  --url https://api.hubapi.com/cms/v3/blogs/authors \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "avatar": "<string>",
      "bio": "<string>",
      "created": "2023-11-07T05:31:56Z",
      "deletedAt": "2023-11-07T05:31:56Z",
      "displayName": "<string>",
      "email": "<string>",
      "facebook": "<string>",
      "fullName": "<string>",
      "id": "<string>",
      "language": "af",
      "linkedin": "<string>",
      "name": "<string>",
      "slug": "<string>",
      "translatedFromId": 123,
      "twitter": "<string>",
      "updated": "2023-11-07T05:31:56Z",
      "website": "<string>"
    }
  ],
  "total": 123,
  "paging": {
    "next": {
      "after": "<string>",
      "link": "<string>"
    }
  }
}

Supported products

Requires one of the following products or higher.
Marketing HubMarketing Hub -Free
Sales HubSales Hub -Free
Service HubService Hub -Free
Content HubContent Hub -Free
Data HubData Hub -Free

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

after
string

The cursor token value to get the next set of results. You can get this from the paging.next.after JSON property of a paged response containing more results.

archived
boolean

Specifies whether to return deleted Blog Authors. Defaults to false.

createdAfter
string<date-time>

Only return Blog Authors created after the specified time.

createdAt
string<date-time>

Only return Blog Authors created at exactly the specified time.

createdBefore
string<date-time>

Only return Blog Authors created before the specified time.

limit
integer<int32>

The maximum number of results to return. Default is 100.

property
string

Used to specify which properties of the Blog Authors to include in the response.

sort
string[]

Specifies which fields to use for sorting results. Valid fields are name, createdAt, updatedAt, createdBy, updatedBy. createdAt will be used by default.

updatedAfter
string<date-time>

Only return Blog Authors last updated after the specified time.

updatedAt
string<date-time>

Only return Blog Authors last updated at exactly the specified time.

updatedBefore
string<date-time>

Only return Blog Authors last updated before the specified time.

Response

successful operation

Response object for collections of blog authors with pagination information.

results
object[]
required

Collection of blog authors.

total
integer<int32>
required

Total number of blog authors.

paging
object

Model definition for forward paging.

Last modified on December 16, 2025