Content
Table of Contents | |||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
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.
...
You will get the revenue per site per date from 11/18/2024 to 11/20/2024 for the 1172 report
...
Result
The endpoint replies shows results in JSON format as the following:
Code Block |
---|
{ "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 ] ] } |
...