SSP Video AD. Report API (for DSP)

1 minute read

Chansup Yang

SSP DSP

The MezzoMedia SSP calls the DSP Report API as follows.
The response to SSP is in the form of json array and distinguish between upper and lower case characters. If there are any additional cautions or additions when call the DSP API, please share them us.

API request URL

Request Url Description
http://{DSP domain} DSP API url that can be called by the MezzoMedia

API Request parameter

Field Required Description Example
key optional It can be used if DSP wants to define each SSP. 44800908
sdate required start date (yyyy-mm-dd) 2019-01-01
edate required end date (yyyy-mm-dd) 2019-01-01

API Response field

Parameter Description
date search date(2018-10-02)
pubid site ID or app ID
request request count
imps impression count
view view count
q1 start count
q2 firstQuartile count
q3 midpoint count
q4 thirdQuartile count
q5 complete count
click click count
revenue publisher revenue ( VAT excluded )
Please share any additional values.

Report API Sample

Sample url Description
{DSP URL}?key={keyvalue}&sdate=2018-09-30&edate=2018-10-03 if there is key value
{DSP URL}?sdate=2018-09-30&edate=2018-10-03 if no key value exists

Report API Response Sample

{
    "data" :[ 
        {
            "date":"20181017",
            "pubid":"da123dfd45645",
            "request":333,
            "imps":333,
            "view":333,
            "q1":333,
            "q2":333,
            "q3":333,
            "q4":333,
            "q5":333,
            "click":333,
            "revenue":333
        },
        ...
    ]
}

Updated: