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>'
import requests

url = "https://api.eflow.team/v1/advertisers/offers"

headers = {"X-Eflow-Api-Key": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'X-Eflow-Api-Key': '<api-key>'}};

fetch('https://api.eflow.team/v1/advertisers/offers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.eflow.team/v1/advertisers/offers",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Eflow-Api-Key: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.eflow.team/v1/advertisers/offers"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("X-Eflow-Api-Key", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.eflow.team/v1/advertisers/offers")
.header("X-Eflow-Api-Key", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.eflow.team/v1/advertisers/offers")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["X-Eflow-Api-Key"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "offers": [
    {
      "network_offer_id": 123,
      "network_id": 123,
      "name": "<string>",
      "thumbnail_url": "<string>",
      "network_category_id": 123,
      "destination_url": "<string>",
      "preview_url": "<string>",
      "currency_id": "<string>",
      "html_description": "<string>",
      "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.