GET
/
v1
/
landing_pages
/
{id}
Landing page details
curl --request GET \
  --url https://api.kajabi.com/v1/landing_pages/{id} \
  --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.

Path Parameters

id
string
required

Landing page ID

Query Parameters

fields[landing_pages]
string

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

Response

Success, shows details of a landing page

data
object