Skip to main content
GET
/
cms
/
v3
/
domains
cURL
curl --request GET \
  --url https://api.hubapi.com/cms/v3/domains \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "domain": "<string>",
      "id": "<string>",
      "isResolving": true,
      "isUsedForBlogPost": true,
      "isUsedForEmail": true,
      "isUsedForKnowledge": true,
      "isUsedForLandingPage": true,
      "isUsedForSitePage": true,
      "correctCname": "<string>",
      "created": "2023-11-07T05:31:56Z",
      "isSslEnabled": true,
      "isSslOnly": true,
      "manuallyMarkedAsResolving": true,
      "primaryBlogPost": true,
      "primaryEmail": true,
      "primaryKnowledge": true,
      "primaryLandingPage": true,
      "primarySitePage": true,
      "secondaryToDomain": "<string>",
      "updated": "2023-11-07T05:31:56Z"
    }
  ],
  "total": 123,
  "paging": {
    "next": {
      "after": "<string>",
      "link": "<string>"
    },
    "prev": {
      "before": "<string>",
      "link": "<string>"
    }
  }
}

Supported products

Authorizations

Authorization
string
header
required

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

Query Parameters

after
string

The paging cursor token of the last successfully read resource will be returned as the paging.next.after JSON property of a paged response containing more results.

archived
boolean

Whether to return only results that have been archived.

createdAfter
string<date-time>
createdAt
string<date-time>
createdBefore
string<date-time>
limit
integer<int32>

The maximum number of results to display per page.

sort
string[]
updatedAfter
string<date-time>
updatedAt
string<date-time>
updatedBefore
string<date-time>

Response

successful operation

results
object[]
required

The results of the query.

total
integer<int32>
required

The number of available results.

paging
object
Last modified on March 30, 2026