GET
/
v1
/
landing_pages
List landing pages
curl --request GET \
  --url https://api.kajabi.com/v1/landing_pages \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "type": "landing_pages",
      "attributes": {
        "title": "<string>",
        "url": "<string>",
        "publish_at": "<string>",
        "created_at": "2023-11-07T05:31:56Z",
        "updated_at": "2023-11-07T05:31:56Z"
      },
      "relationships": {
        "site": {
          "data": {
            "id": "<string>",
            "type": "<string>"
          }
        }
      }
    }
  ],
  "links": {
    "self": "<string>",
    "current": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

sort
string

Sort order, use: title for descending order use '-' e.g. &sort=-title

page[number]
integer
page[size]
integer

Number of documents

fields[landing_pages]
string

Partial attributes as specified, e.g. fields[landing_pages]=title

filter[title_cont]
string

Filter by title contains, for example ?filter[title_cont]=about

filter[published]
string

Filter by published status, for example ?filter[published]=true

Response

Success, list of landing pages which the current user may access

data
object[]