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:

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

https://admin.us.e-planning.net/admin/adnet/pub/stats/informe.html?intipo_id=20&informe_id=1172&o=json&fecha_inicio=11/18/2024&fecha_fin=11/20/2024

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
    ]
  ]
}