Skip to main content
GET
/
networks
/
offerurls
List Offer URLs
curl --request GET \
  --url https://api.eflow.team/v1/networks/offerurls \
  --header 'X-Eflow-Api-Key: <api-key>'
{
  "urls": [
    {
      "network_offer_url_id": 123,
      "network_id": 123,
      "network_offer_id": 123,
      "name": "<string>",
      "destination_url": "<string>",
      "preview_url": "<string>",
      "url_status": "active",
      "network_affiliate_ids": [
        123
      ],
      "is_apply_specific_affiliates": true,
      "is_hidden_affiliate": true,
      "time_created": 1734455015,
      "time_saved": 1734455015,
      "remote_offer_resource": {
        "network_offer_id": 123,
        "network_id": 123,
        "resource_type": "<string>",
        "remote_resource_id": "<string>",
        "resource_id": 123,
        "last_value_md5": "<string>",
        "json_config": "<string>",
        "json_data": "<string>",
        "time_created": 1734455015,
        "time_saved": 1734455015
      }
    }
  ],
  "paging": {
    "page": 123,
    "page_size": 123,
    "total_count": 123
  }
}
Retrieve all offer URLs for the network. Returns a paginated list of offer URLs with their configuration and affiliate targeting settings. Supports filtering by offer ID, URL status, and timestamps.

Authorizations

X-Eflow-Api-Key
string
header
required

The Everflow API key generated from the Control Center > Security.

Query Parameters

page
integer
default:1

Page number (1-based).

page_size
integer
default:50

Number of results per page (max 2000).

Required range: x <= 2000
filter
string

Filter results by a field. The format is filter={field}={value}. Supported fields: network_offer_id (filter by offer ID), url_status (active, paused, or deleted), time_created (creation timestamp), time_saved (last modified timestamp).

Response

200 - application/json
urls
object[]
paging
object