Skip to main content
GET
/
affiliates
/
alloffers
Find All Visible Offers
curl --request GET \
  --url https://api.eflow.team/v1/affiliates/alloffers \
  --header 'X-Eflow-Api-Key: <api-key>'
{
  "offers": [
    {
      "network_offer_id": 123,
      "name": "<string>",
      "offer_status": "<string>",
      "currency_id": "<string>",
      "visibility": "<string>",
      "thumbnail_url": "<string>",
      "description": "<string>",
      "caps": {
        "conversion_cap": 123,
        "click_cap": 123,
        "cap_interval": "<string>"
      },
      "tracking_url": "<string>",
      "relationship": {
        "offer_affiliate_status": "<string>"
      }
    }
  ],
  "paging": {
    "page": 123,
    "page_size": 123,
    "total_count": 123
  }
}

Authorizations

X-Eflow-Api-Key
string
header
required

The affiliate's API key generated from the Affiliate Portal. Uses the X-Eflow-Api-Key header.

Query Parameters

page
integer
default:1

Page number for pagination (1-based).

page_size
integer
default:50

Number of results per page.

Search term to filter offers by name or ID.

category_id
integer

Filter by offer category ID.

Response

200 - application/json

OK

offers
object[]

Array of visible offers.

paging
object

Pagination metadata.