GET
/
v1
/
offers
List offers
curl --request GET \
  --url https://api.kajabi.com/v1/offers \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "type": "<string>",
      "attributes": {
        "title": "<string>",
        "description": "<string>",
        "internal_title": "<string>",
        "currency": "<string>",
        "price_in_cents": 123,
        "payment_type": "<string>",
        "token": "<string>",
        "payment_method": "<string>",
        "price_description": "<string>",
        "checkout_url": "<string>",
        "recurring_offer": true,
        "subscription": true,
        "one_time": true,
        "single": true,
        "free": true,
        "image_url": "<string>"
      },
      "relationships": {
        "site": {
          "data": {
            "id": "<string>",
            "type": "<string>"
          }
        },
        "products": {
          "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, price_in_cents, for descending order use '-' e.g. &sort=-price_in_cents

page[number]
number
page[size]
number

Number of documents

fields[offers]
string

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

filter[site_id]
string

Filter by site_id, for example ?filter[site_id]=111

filter[title_cont]
string

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

filter[description_cont]
string

Filter by description contains, for example ?filter[description_cont]=course

Response

Success, list of offers which the current user may access

data
object[]