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,
      "network_id": 123,
      "name": "<string>",
      "offer_status": "<string>",
      "currency_id": "<string>",
      "visibility": "<string>",
      "thumbnail_url": "<string>",
      "html_description": "<string>",
      "is_description_plain_text": true,
      "preview_url": "<string>",
      "tracking_url": "<string>",
      "impression_tracking_url": "<string>",
      "network_category_id": 123,
      "network_tracking_domain_id": 123,
      "app_identifier": "<string>",
      "is_caps_enabled": true,
      "caps_timezone_id": 123,
      "daily_conversion_cap": 123,
      "weekly_conversion_cap": 123,
      "monthly_conversion_cap": 123,
      "global_conversion_cap": 123,
      "daily_click_cap": 123,
      "weekly_click_cap": 123,
      "monthly_click_cap": 123,
      "global_click_cap": 123,
      "daily_payout_cap": 123,
      "weekly_payout_cap": 123,
      "monthly_payout_cap": 123,
      "global_payout_cap": 123,
      "is_force_terms_and_conditions": true,
      "is_using_explicit_terms_and_conditions": true,
      "terms_and_conditions": "<string>",
      "is_use_direct_linking": true,
      "is_using_suppression_list": true,
      "suppression_list_id": 123,
      "date_live_until": "<string>",
      "time_created": 123,
      "time_saved": 123,
      "relationship": {
        "offer_affiliate_status": "<string>"
      }
    }
  ],
  "paging": {
    "page": 123,
    "page_size": 123,
    "total_count": 123
  }
}
Returns a paginated list of all offers visible to the authenticated affiliate. This includes both public offers and offers that require approval. Use this endpoint to browse the full catalog of available offers before applying to run them. The relationship.offer_affiliate_status field indicates whether the affiliate has already been approved, is pending, or has not yet applied for a given offer.

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
offers
object[]

Array of visible offers.

paging
object

Pagination metadata.