GET
/
v1
/
sites
List sites
curl --request GET \
  --url https://api.kajabi.com/v1/sites \
  --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.

Query Parameters

sort
string

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

page[number]
number
page[size]
number

Number of documents

fields[sites]
string

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

filter[title_cont]
string

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

filter[subdomain_cont]
string

Filter by subdomain contains, for example ?filter[subdomain_cont]=training

Response

Success, lists sites which the current user may access

data
object[]