Skip to main content
POST
/
partners
/
marketplace
/
demands
List Marketplace Advertisers
curl --request POST \
  --url https://api.eflow.team/v1/partners/marketplace/demands \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '{}'
import requests

url = "https://api.eflow.team/v1/partners/marketplace/demands"

payload = {}
headers = {
"X-Eflow-Api-Key": "<api-key>",
"Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
method: 'POST',
headers: {'X-Eflow-Api-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({})
};

fetch('https://api.eflow.team/v1/partners/marketplace/demands', 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/partners/marketplace/demands",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([

]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"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"
"strings"
"net/http"
"io"
)

func main() {

url := "https://api.eflow.team/v1/partners/marketplace/demands"

payload := strings.NewReader("{}")

req, _ := http.NewRequest("POST", url, payload)

req.Header.Add("X-Eflow-Api-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")

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

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

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.post("https://api.eflow.team/v1/partners/marketplace/demands")
.header("X-Eflow-Api-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.eflow.team/v1/partners/marketplace/demands")

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

request = Net::HTTP::Post.new(url)
request["X-Eflow-Api-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{}"

response = http.request(request)
puts response.read_body
{
  "demand_partners": [
    {
      "everxchange_demand_partner_id": 123,
      "network_id": 123,
      "company_name": "<string>",
      "status": "<string>",
      "public_description": "<string>",
      "logo_url": "<string>",
      "logo_asset_id": 123,
      "website_url": "<string>",
      "link": "<string>",
      "custom_link_label": "<string>",
      "is_internal": true,
      "has_migrated_categories": true,
      "is_contact_info_public": true,
      "default_network_offer_id": 123,
      "facebook_contact_url": "<string>",
      "instagram_contact_url": "<string>",
      "linkedin_contact_url": "<string>",
      "twitter_contact_url": "<string>",
      "tiktok_contact_url": "<string>",
      "youtube_contact_url": "<string>",
      "time_created": 1734455015,
      "time_saved": 1734455015,
      "relationship": {
        "connection": {},
        "invitation": {},
        "is_featured": true,
        "main_platform_id": 123,
        "time_connected": 1734455015,
        "contact": {
          "first_name": "<string>",
          "last_name": "<string>",
          "phone_number": "<string>",
          "email": "<string>"
        },
        "resource_asset": {
          "customer_asset_id": 123,
          "content_type": "<string>",
          "filename": "<string>",
          "url": "<string>",
          "file_size": 123,
          "time_saved": 1734455015
        },
        "everflow_pay": {
          "is_everflow_pay_enabled": true
        },
        "performance": {
          "everxchange_demand_partner_id": 123,
          "clicks_weekly": 123,
          "has_reached_weekly_threshold": true,
          "epc_weekly": 123,
          "cvr_weekly": 123,
          "clicks_monthly": 123,
          "has_reached_monthly_threshold": true,
          "epc_monthly": 123,
          "cvr_monthly": 123,
          "time_created": 1734455015,
          "time_saved": 1734455015
        },
        "programs": [
          {
            "everxchange_demand_partner_program_id": 123,
            "everxchange_demand_partner_id": 123,
            "name": "<string>",
            "preview_url": "<string>",
            "ordering_value": 123,
            "events": [
              {
                "everxchange_demand_partner_program_event_id": 123,
                "everxchange_demand_partner_program_id": 123,
                "everxchange_demand_partner_id": 123,
                "name": "<string>",
                "is_default": true,
                "payout_type_id": 123,
                "payout_value_min": 123,
                "payout_value_max": 123,
                "time_created": 1734455015,
                "time_saved": 1734455015
              }
            ],
            "time_created": 1734455015,
            "time_saved": 1734455015
          }
        ],
        "payments": {
          "everflow_pay": {
            "enabled": true
          },
          "tipalti": {
            "enabled": true
          },
          "trusted_payouts": {
            "enabled": true
          },
          "managed_payments": {
            "enabled": true
          },
          "veem": {
            "enabled": true
          },
          "paypal": {
            "enabled": true
          },
          "masspay": {
            "enabled": true
          }
        },
        "brands": [
          {
            "everxchange_demand_partner_brand_id": 123,
            "everxchange_demand_partner_id": 123,
            "name": "<string>",
            "logo_url": "<string>",
            "logo_asset_id": 123,
            "website_url": "<string>",
            "ordering_value": 123,
            "relationship": {
              "resource_asset": {
                "customer_asset_id": 123,
                "content_type": "<string>",
                "filename": "<string>",
                "url": "<string>",
                "file_size": 123,
                "time_saved": 1734455015
              }
            },
            "time_created": 1734455015,
            "time_saved": 1734455015
          }
        ],
        "terms_and_conditions": "<string>",
        "vertical_ids": [
          123
        ],
        "channel_ids": [
          123
        ],
        "geo_vertical_ids": [
          123
        ],
        "payout_type_ids": [
          123
        ],
        "platform_ids": [
          123
        ],
        "categories": [
          {
            "category_id": 123
          }
        ],
        "country_ids": [
          123
        ],
        "conversion_funnels": [],
        "customer_short": "<string>",
        "network_currency_id": "<string>"
      }
    }
  ]
}
Retrieve all marketplace advertisers (demand partners) available in the Everflow marketplace. Demand partners are advertisers or networks offering deals through the marketplace platform. Returns an array of demand partner objects with their profile information and status.

Authorizations

X-Eflow-Api-Key
string
header
required

The marketplace partner's API key. Uses the X-Eflow-Api-Key header. The key belongs to the marketplace partner user.

Body

application/json

The body is of type object.

Response

200 - application/json
demand_partners
object[]

Array of demand partner objects.