Skip to main content
GET
/
advertisers
/
offers
List All Offers
curl --request GET \
  --url https://api.eflow.team/v1/advertisers/offers \
  --header 'X-Eflow-Api-Key: <api-key>'
{
  "offers": [
    {
      "network_offer_id": 123,
      "network_id": 123,
      "name": "<string>",
      "thumbnail_url": "<string>",
      "network_category_id": 123,
      "destination_url": "<string>",
      "preview_url": "<string>",
      "offer_status": "active",
      "currency_id": "<string>",
      "html_description": "<string>",
      "visibility": "public",
      "caps_timezone_id": 123,
      "date_live_until": "<string>",
      "is_using_explicit_terms_and_conditions": true,
      "terms_and_conditions": "<string>",
      "is_caps_enabled": true,
      "is_using_suppression_list": true,
      "suppression_list_id": 123,
      "network_tracking_domain_id": 123,
      "daily_conversion_cap": 123,
      "weekly_conversion_cap": 123,
      "monthly_conversion_cap": 123,
      "global_conversion_cap": 123,
      "daily_revenue_cap": 123,
      "weekly_revenue_cap": 123,
      "monthly_revenue_cap": 123,
      "global_revenue_cap": 123,
      "daily_click_cap": 123,
      "weekly_click_cap": 123,
      "monthly_click_cap": 123,
      "global_click_cap": 123,
      "tracking_url": "<string>",
      "time_created": 1734455015,
      "time_saved": 1734455015,
      "relationship": {
        "category": {
          "network_category_id": 123,
          "network_id": 123,
          "name": "<string>",
          "status": "<string>",
          "time_created": 1734455015,
          "time_saved": 1734455015
        },
        "creatives": {
          "total": 123,
          "entries": [
            {
              "network_offer_creative_id": 123,
              "network_id": 123,
              "network_offer_id": 123,
              "name": "<string>",
              "creative_type": "<string>",
              "creative_status": "<string>",
              "resource_url": "<string>",
              "html_code": "<string>",
              "width": 123,
              "height": 123,
              "is_private": true,
              "is_apply_specific_affiliates": true,
              "additional_offer_ids": "<string>",
              "email_from": "<string>",
              "email_from_lines": "<string>",
              "email_subject": "<string>",
              "email_subject_lines": "<string>",
              "time_created": 1734455015,
              "time_saved": 1734455015
            }
          ]
        },
        "reporting": {
          "total_click": 123,
          "unique_click": 123,
          "invalid_click": 123,
          "cv": 123,
          "cvr": 123,
          "evr": 123,
          "event": 123,
          "ctr": 123,
          "cost": 123,
          "cpc": 123,
          "cpm": 123,
          "imp": 123,
          "gross_sales": 123
        },
        "revenues": {
          "total": 123,
          "entries": [
            {
              "revenue_type": "<string>",
              "entry_name": "<string>",
              "revenue_amount": 123,
              "revenue_percentage": 123
            }
          ]
        },
        "ruleset": {},
        "remaining_caps": {
          "remaining_daily_conversion_cap": 123,
          "remaining_weekly_conversion_cap": 123,
          "remaining_monthly_conversion_cap": 123,
          "remaining_global_conversion_cap": 123,
          "remaining_daily_revenue_cap": 123,
          "remaining_weekly_revenue_cap": 123,
          "remaining_monthly_revenue_cap": 123,
          "remaining_global_revenue_cap": 123,
          "remaining_daily_click_cap": 123,
          "remaining_weekly_click_cap": 123,
          "remaining_monthly_click_cap": 123,
          "remaining_global_click_cap": 123,
          "remaining_daily_payout_cap": 123,
          "remaining_weekly_payout_cap": 123,
          "remaining_monthly_payout_cap": 123,
          "remaining_global_payout_cap": 123
        },
        "meta": {},
        "urls": {
          "total": 123,
          "entries": [
            {}
          ]
        },
        "email": {
          "network_id": 123,
          "network_offer_id": 123,
          "is_enabled": true,
          "from_lines": "<string>",
          "subject_lines": "<string>"
        }
      }
    }
  ]
}
Retrieve all offers visible to the authenticated advertiser. Use the relationship query parameter to include related data alongside each offer. Data is automatically scoped to the authenticated advertiser — no advertiser filter is needed. Note: the page and page_size query parameters are accepted but currently ignored by the API — all results are returned in a single response.

Authorizations

X-Eflow-Api-Key
string
header
required

The advertiser's API key generated from the Advertiser Portal. Uses the same X-Eflow-Api-Key header as other Everflow APIs, but the key belongs to the advertiser user rather than the network admin.

Query Parameters

page
integer
default:1

Page number (1-based).

page_size
integer
default:50

Number of results per page.

relationship
enum<string>

Include related data in the response. Repeat for multiple relationships.

Available options:
category,
creatives,
reporting,
thumbnail_asset,
revenues,
ruleset,
remaining_caps,
meta

Response

200 - application/json
offers
object[]

Array of offer objects visible to the advertiser.