メインコンテンツへスキップ
GET
/
cms
/
pages
/
2026-03
/
landing-pages
全てのランディングページを取得
curl --request GET \
  --url https://api.hubapi.com/cms/pages/2026-03/landing-pages \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "abTestId": "<string>",
      "archivedAt": "2023-11-07T05:31:56Z",
      "archivedInDashboard": true,
      "attachedStylesheets": [
        {}
      ],
      "authorName": "<string>",
      "campaign": "<string>",
      "categoryId": 123,
      "contentGroupId": "<string>",
      "created": "2023-11-07T05:31:56Z",
      "createdById": "<string>",
      "currentlyPublished": true,
      "domain": "<string>",
      "dynamicPageDataSourceId": "<string>",
      "dynamicPageDataSourceType": 123,
      "dynamicPageHubDbTableId": "<string>",
      "enableDomainStylesheets": true,
      "enableLayoutStylesheets": true,
      "featuredImage": "<string>",
      "featuredImageAltText": "<string>",
      "folderId": "<string>",
      "footerHtml": "<string>",
      "headHtml": "<string>",
      "htmlTitle": "<string>",
      "id": "<string>",
      "includeDefaultCustomCss": true,
      "layoutSections": {},
      "linkRelCanonicalUrl": "<string>",
      "mabExperimentId": "<string>",
      "metaDescription": "<string>",
      "name": "<string>",
      "pageExpiryDate": 123,
      "pageExpiryEnabled": true,
      "pageExpiryRedirectId": 123,
      "pageExpiryRedirectUrl": "<string>",
      "pageRedirected": true,
      "password": "<string>",
      "publicAccessRules": [
        {}
      ],
      "publicAccessRulesEnabled": true,
      "publishDate": "2023-11-07T05:31:56Z",
      "publishImmediately": true,
      "slug": "<string>",
      "state": "<string>",
      "subcategory": "<string>",
      "templatePath": "<string>",
      "themeSettingsValues": {},
      "translatedFromId": "<string>",
      "translations": {},
      "updated": "2023-11-07T05:31:56Z",
      "updatedById": "<string>",
      "url": "<string>",
      "useFeaturedImage": true,
      "widgetContainers": {},
      "widgets": {}
    }
  ],
  "total": 123,
  "paging": {
    "next": {
      "after": "<string>",
      "link": "<string>"
    }
  }
}

Supported products

承認

Authorization
string
header
必須

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

クエリパラメータ

after
string

次の結果のセットを取得するためのカーソルトークン値。これはその他の結果が含まれるページ付けされたレスポンスの「paging.next.after」JSONプロパティーから取得できます。

archived
boolean

削除済みのランディングページを返すかどうかを指定します。デフォルト値は「false」です。

createdAfter
string<date-time>

特定の日時以降に作成されたランディングページを絞り込みます。

createdAt
string<date-time>

指定された時間ちょうどに作成されたランディングページのみを返します。

createdBefore
string<date-time>

特定の日時より前に作成されたランディングページを絞り込みます。

limit
integer<int32>

返す結果の最大数。デフォルト値は100です。

property
string

レスポンスに含めるランディングページのプロパティーを指定します。

sort
string[]

結果の並べ替えに使用するフィールドが指定されます。有効なフィールドは「name」、「createdAt」、「updatedAt」、「createdBy」、「updatedBy」で、デフォルトでは「createdAt」が使用されます。

updatedAfter
string<date-time>

指定された時間より後に最後に更新されたランディングページのみを返します。

updatedAt
string<date-time>

指定された時間ちょうどに最後に更新されたランディングページのみを返します。

updatedBefore
string<date-time>

指定された時間より前に最後に更新されたランディングページのみを返します。

レスポンス

successful operation

results
object[]
必須

ページのコレクション。

total
integer<int32>
必須

ページの合計数。

paging
object
Last modified on May 11, 2026