Skip to main content
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>",
    "relationships": {
      "site": {},
      "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