Skip to main content
GET
/
affiliates
/
pixels
Find All Postbacks
curl --request GET \
  --url https://api.eflow.team/v1/affiliates/pixels \
  --header 'X-Eflow-Api-Key: <api-key>'
import requests

url = "https://api.eflow.team/v1/affiliates/pixels"

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/affiliates/pixels', 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/affiliates/pixels",
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/affiliates/pixels"

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/affiliates/pixels")
.header("X-Eflow-Api-Key", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.eflow.team/v1/affiliates/pixels")

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
{
  "pixels": [
    {
      "network_pixel_id": 123,
      "network_id": 123,
      "network_affiliate_id": 123,
      "network_offer_id": 123,
      "network_offer_payout_revenue_id": 123,
      "delivery_method": "<string>",
      "pixel_level": "<string>",
      "pixel_status": "<string>",
      "pixel_type": "<string>",
      "postback_url": "<string>",
      "html_code": "<string>",
      "delay_ms": 123,
      "time_created": 1734455015,
      "time_saved": 1734455015,
      "facebook_pixel": {
        "pixel_id": "<string>",
        "event_name": "<string>",
        "access_token": "<string>"
      },
      "tiktok_pixel": {},
      "snapchat_pixel": {},
      "rumble_pixel": {},
      "relationship": {
        "affiliate": {
          "network_affiliate_id": 123,
          "network_id": 123,
          "name": "<string>",
          "account_status": "<string>",
          "network_employee_id": 123,
          "internal_notes": "<string>",
          "has_notifications": true,
          "network_traffic_source_id": 123,
          "account_executive_id": 123,
          "adress_id": 123,
          "default_currency_id": "<string>",
          "is_contact_address_enabled": true,
          "enable_media_cost_tracking_links": true,
          "time_created": 1734455015,
          "time_saved": 1734455015,
          "referrer_id": 123
        },
        "offer": {
          "network_offer_id": 123,
          "network_id": 123,
          "network_advertiser_id": 123,
          "network_offer_group_id": 123,
          "name": "<string>",
          "offer_status": "<string>",
          "network_tracking_domain_id": 123,
          "visibility": "<string>",
          "currency_id": "<string>"
        },
        "payout_revenue": {}
      }
    }
  ]
}
Returns a list of all postbacks configured by the authenticated affiliate. Supports filtering by offer ID, status, type, and delivery method.

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

network_offer_id
integer

Filter by specific offer ID. Omit to return postbacks for all offers.

pixel_status
enum<string>

Filter by postback status.

Available options:
active,
inactive
pixel_type
enum<string>

Filter by postback type.

Available options:
conversion,
post_conversion,
cpc
delivery_method
enum<string>

Filter by delivery method.

Available options:
html,
postback,
facebook

Response

200 - application/json
pixels
object[]

Array of postbacks.