GET
/
v1
/
sites
/
{id}
Site details
curl --request GET \
  --url https://api.kajabi.com/v1/sites/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "type": "<string>",
    "attributes": {
      "title": "<string>",
      "subdomain": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  },
  "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

Query Parameters

fields[sites]
string

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

Response

Success, shows details of a specified site

data
object