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

Path Parameters

id
string
required

Query Parameters

include
string

Load the related resources, for example ?include=products

fields[offers]
string

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

Response

Success, shows details of an offer

data
object