API for Buyers
Content
Authentication
All requests to the API must go through Basic Authentication, using the credentials of a user with enough permits to perform the requested action.
Execution
Endpoint
Use the following endpoint:
https://admin.us.e-planning.net/admin/adnet/pub/stats/informe.html?intipo_id=20&o=json
Use GET to send the following obligatory parameters:
fecha_inicio with format d/m/Y or m/d/Y depending on the user’s regional settings
fecha_fin with format d/m/Y or m/d/Y depending on the user’s regional settings
informe_id to indicate which report you want to get information from
huso_horario with the offset from US Central timezone you want (optional)
Available reports are:
informe_id | Name |
---|---|
1172 | Bid requests, bids, paid impressions and revenue by date |
1173 | Bid requests, bids, paid impressions and revenue |
1174 | Bid requests, bids, paid impressions and revenue by month |
1179 | Bid requests, bids, paid impressions and revenue by date (with timezone) |
1180 | Bid requests, bids, paid impressions and revenue by date and time (with timezone) |
Example
You will get results per date from 11/18/2024 to 11/20/2024 for the 1172 report
Result
The endpoint shows results in JSON format as the following:
{
"columns": [
"Date",
"Auctions",
"Bids",
"Win rate",
"Impressions",
"Fill rate",
"Revenue"
],
"data": [
[
"11/18/2024",
"792,434,814",
"22,991,984",
"3.60%",
"827,418",
"0.10%",
843.74
],
[
"11/19/2024",
"762,704,260",
"21,153,182",
"3.96%",
"836,783",
"0.11%",
"782.90"
],
[
"11/20/2024",
"600,737,646",
"19,772,460",
"3.09%",
"611,756",
"0.10%",
537.79
]
]
}
columns indicates the order of the columns
data is an array. Every position contains data for a specific row. The order of the information within the array is given by the order of the columns.