auction/list

GET/auction/list

List recent auctions matching the requested filters. Requires the auctions:read permission.

Request

cURL
curl -X GET "https://provisioning.cloudx.io/api/v1/auction/list?start_time=1712448000&end_time=1712534399" \
  -H "Authorization: Bearer $CLOUDX_API_KEY"

Query parameters

NameTypeDescription
start_timerequiredinteger<int64>Start of the time range as a Unix timestamp in seconds. The requested range must not exceed 31 days and must not start before 2020-01-01 UTC.
end_timerequiredinteger<int64>End of the time range as a Unix timestamp in seconds. The requested range must not exceed 31 days and must not end before 2020-01-01 UTC.
test_modestringTraffic mode to include. Defaults to production traffic.
app_bundlestringApp bundle identifier filter.
ad_unit_idstringAd unit ID filter.
countrystringISO 3166-1 alpha-2 country code filter.
device_osstringDevice operating system filter.
limitinteger<int32>Maximum number of rows to return.
has_ilrdbooleanFilter to auctions that have CloudX ILRD.
has_external_ilrdbooleanFilter to auctions that have external ILRD.
mediatorstringMediation platform filter.

Responses

Matching auctions.
{
  "auctions": [
    "<string>"
  ]
}

200 Matching auctions.

FieldTypeDescription
auctionsrequiredarray of object

400 Invalid request parameters.

FieldTypeDescription
errorrequiredstring

401 Unauthorized.

FieldTypeDescription
errorrequiredstring

403 Forbidden.

FieldTypeDescription
errorrequiredstring

500 Internal server error.

FieldTypeDescription
errorrequiredstring