Skip to main content
GET
/
v1
/
deals
/
cashback-offers
Get cashback offers
curl --request GET \
  --url https://api.onsleek.ai/v1/deals/cashback-offers \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "e8400e53-078f-4641-97e2-5c397401c0f0",
      "featured": true,
      "countries": [
        "CA",
        "US"
      ],
      "maximumFixedCommissionFee": 75,
      "description": "$75.00 cashback on all orders.",
      "category": "Electronics",
      "termsAndExclusions": "Excludes all Apple products",
      "cashbackPercentage": 0.14,
      "retailerId": "4f9df53d-16dc-4630-8603-8d14ec40fcfe",
      "url": "https://www.bestbuy.com",
      "name": "BestBuy",
      "hostname": "www.bestbuy.com",
      "updatedAt": "2023-10-01T12:00:00.000Z",
      "logo": "https://example.com/logo.png"
    }
  ],
  "cursor": "<string>"
}

Authorizations

Authorization
string
header
required

API key for accessing the Sleek API.

Query Parameters

cursor
string

The ID of the next item that will be fetched. Format: UUID RFC 4122

hostname
string

The hostname of the cashback offer's retailer to search for.

name
string

The name of the cashback offer's retailer to search for.

category
string

The category of the cashback offers to search for.

country
string

The country of the cashback offers to search for. Format: ISO 3166-1 alpha-2 code

Response

200 - application/json

List of cashback offers.

data
object[]
required
cursor
string

The ID of the next item in the list. Defined if there are more items to fetch. Pass this as the cursor query parameter to fetch the next page. Format: UUID RFC 4122