Skip to content
On this page

Offers

On this page, you can see all endpoints related to the Affiliate's offers

Dataset

FieldDescription
idThe unique identifier of the offer.
nameThe name of the offer.
priceThe price of the offer.
quantityThe available stock of the offer.
commissionThe commission amount earned for promoting the offer.
price_currencyThe offer price currency.
commission_currencyThe commission currency.
country_iso_codeThe offer country ISO code 2.
offer_pageThe offer link page.
referral_idThe referral id of offer.
referral_linkThe unique link to promote the offer.
medias.bannersThe offer banners.
medias.videosThe offer videos.
medias.thumbelsThe offer thumbels.
medias.resourcesThe offer resources.

Get All offers

Retrieve a list of all offers.

Endpoint

/affiliate/offers
1

Method GET

Parameters

None.

Response

json
{
  "status": "success",
  "data": [
    {
      "id": "...",
      "name": "...",
      "price": "...",
      "quantity": ...,
      "commission": ...,
      "price_currency": "...",
      "commission_currency": "...",
      "country_iso_code": "...",
      "offer_page": "...",
      "referral_id": "...",
      "referral_link": "...",
      "medias": {
        "banners": {
          "banner_1": "...",
          ...
        },
        "videos": {
          "video_1": "...",
          ...
        },
        "thumbnails": {
          "thumbnail_1": "...",
          ...
        },
        "resources": {
          "resource_1": "...",
          ...
        }
      }
    },
    ...
  ],
  "meta": {
    "pagination": {
      ...
    }
  }
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42

Show offer

Retrieve an offer.

Endpoint

/affiliate/offers/{id}
1

Method GET

Parameters

NameTypeDescriptionRequired
idstringThe unique identifier of the offer to retrieve.Yes

Response

json
{
  "status": "success",
  "data": {
    "id": "...",
    "name": "...",
    "price": "...",
    "quantity": ...,
    "commission": ...,
    "price_currency": "...",
    "commission_currency": "...",
    "country_iso_code": "...",
    "offer_page": "...",
    "referral_id": "...",
    "referral_link": "...",
    "medias": {
      "banners": {
        "banner_1": "...",
        ...
      },
      "videos": {
        "video_1": "...",
        ...
      },
      "thumbnails": {
        "thumbnail_1": "...",
        ...
      },
      "resources": {
        "resource_1": "...",
        ...
      }
    }
  }
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34