Skip to main content
GET
/
advertisers
/
{advertiserId}
/
event-sources
List event sources
curl --request GET \
  --url https://api.interchange.io/api/v2/buyer/advertisers/{advertiserId}/event-sources \
  --header 'Authorization: Bearer <token>'
{
  "eventSources": [
    {
      "eventSourceId": "retailer_sales",
      "name": "Retailer Sales Pixel",
      "eventTypes": [
        "page_view"
      ],
      "allowedDomains": [
        "<string>"
      ],
      "createdAt": "2026-01-15T10:30:00.000Z",
      "updatedAt": "2026-01-20T14:45:00.000Z"
    }
  ],
  "total": 5
}

Documentation Index

Fetch the complete documentation index at: https://docs.interchange.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key or access token

Path Parameters

advertiserId
string
required

Unique identifier for the advertiser

Minimum string length: 1
Example:

"12345"

Query Parameters

take
integer
default:50

Number of results to return (max 250)

Required range: x <= 250
Example:

50

skip
integer
default:0

Number of results to skip for pagination

Required range: 0 <= x <= 9007199254740991
Example:

0

Response

List event sources

Response containing a paginated list of event sources

eventSources
object[]
required

List of event sources

total
integer
required

Total count of event sources matching the query

Required range: 0 <= x <= 9007199254740991
Example:

5