/
Daily Revenue per Site

Daily Revenue per Site

This request allows to extract the daily revenue per site of your E-Planning SSP account.

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=5&informe_id=885&o=json


Use
GET to send the following obligatory parameters:

  • date_start with format d/m/Y or m/d/Y depending on the user’s regional settings
  • date_end with format d/m/Y or m/d/Y depending on the user’s regional settings

Example

https://admin.us.e-planning.net/admin/adnet/pub/stats/informe.html?fecha_inicio=01/01/2019&fecha_fin=15/02/2019&intipo_id=5&informe_id=885&o=json

You will get the revenue per site per date from 01/01/2019 to 15/02/2019

Reply

The endpoint replies in JSON format the following:

{ 
   "columns":[ 
      "Sitio",
      "Fecha",
      "Impresiones subastadas",
      "Impresiones vendidas en subasta",
      "Fill rate de Exchange",
      "Importe a cobrar a anunciantes",
      "eCPM"
   ],
   "data":[ 
      [ 
         "ejemplo1.com",
         "01/01/2019",
         "4,675",
         107,
         "2.29%",
         0.07,
         0.65
      ],
      [ 
         "ejemplo2.com",
         "01/01/2019",
         "2,153,673",
         "93,554",
         "4.34%",
         85.67,
         0.92
      ]
    ]
}

  • columns indicates the order of the columns
  • data is an array. Every position contains data for a specific site on a specific day. The order of the information within the array is given by the order of the columns.

In the sample below, we can see the site example1.com had $0.07 on 01/01/2019 and the site example2.com had $85.67

  • Monetary values are expressed in American dollars (USD).
  • The format of the date and numbers corresponds to the user’s regional settings.

Related content