Exchanges
Returns a list of exchanges (SSP's) names and id's. If no specific search query is specified, returns all exchanges.
Field | Param | Required/ Optional | Description |
---|---|---|---|
q | string | optional | Search query parameter. Returns result for a specific exchange (SSP). If no value is specified, then all exchanges data will be returned |
creative_types | string | optional | Supported Values- image javascript native video |
advertiser_id | int | optional | Unique ID per advertiser account |
per_page | int | optional | Number of rows per page. Default Value- 30 |
page | int | optional | Returns page number.Default Value- 1 page |
curl -X GET \
'https://api.kayzen.io/v1/meta/exchanges?page=1&per_page=25&q=MoPub' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer ACCESS_TOKEN'
{
"data":[
{
"id":23,
"name":"MoPub",
"type":"public",
"status":"enabled",
"bids_url":null,
"events_url":null,
"creative_types":[
{
"type":"image"
}
]
}
],
"meta":{
"current_page":1,
"total_pages":1,
"total_entries":1
}
}
Updated over 4 years ago