Skip to content

Performance Reporting

PS: You need to use Token to change the status, for more details, please check Token

• This chapter will introduce Mintegral Performance Reporting API

Request address

https://ss-api.mintegral.com/api/v1/reports/data

Request method

GET

Request example

json
GET /api/v1/reports/data?start_date=2021-11-01&end_date=2021-11-01
&per_page=50&page=1&utc=+8&dimension=sub_id,location,creative
HTTP/1.1 Host: ss-api.mintegral.com

Request Parameter

FieldsTypeExplanationsDefault ValueExamples
utc OptionalstringTimezone"+8""+8"
start_date OptionalstringData can be pulled from up to 30 days ago.YesterdayYYYY-MM-DD
end_date OptionalstringThe interface can only pull up to 8 days’ worth of data in one request and only data for yesterday or before is available.YesterdayYYYY-MM-DD
per_page OptionalintThe number of data in a page, and the maximum number is 5000500030
page OptionalintPage number1
dimension Optionalstringdimension=>”location”, Segment offer data by country."location"
uuid OptionalstringQuery data by uuid."abc_def_cn_ios_mtg"
campaign_id OptionalintQuery data by campaign_id1234
package_name OptionalstringQuery data by android bundle id or ios application store id.android: "com.tencent.mm"
ios: "id414478124"
not_empty_field OptionalstringWhich fields of data can not be empty. Enum field: "click", "install", "impression", "spend".Separate with commas for multiple fields."click,spend"

Response

FieldsTypeExplanations
codeint200 => is success.
207 => The interface can only pull up to 8 days’ worth of data in one request and only data for yesterday or before is available.
msgstringIf success, return to “success”. If fail, return to detailed wrong info.
dataarray<json>If success, return Data of response. If fail, return to detailed wrong info.
pageintCurrent page number
per_pageintThe number of data to return
page_countintThe sum of page number
total_countintThe sum of hits
datedateThe time of data
offer_idintUnique offer id
offer_namestringUnique name for offer
uuidstringUnique offer name generated automatically
package_namestringBundle id
preview_linkstringPreview link
platformstringOffer platform
clickintSum of click
installintSum of install
geoarrayThe target country in offer details
impressionintSum of impression
spendfloatSum of spend
utcstringTime zone, the default value is UTC +8
currencystringCurrency, the default value is USD
locationstringThe promotion country of offers

Response Example

json
{
  "page": "1",
  "per_page": "50",
  "page_count": "1",
  "total_count": "2",
  "data": [
    {
      "date": "2016-08-25",
      "click": 0,
      "uuid": "uc_xx_gp",
      "install": 0,
      "geo": ["CN"],
      "impression": 0,
      "spend": 0,
      "offer_id": 489844,
      "offer_name": "cqf_testtttt",
      "preview_link": "https://play.google.com/store/apps/details?id=com.UCMobile.intl",
      "platform": "android",
      "package_name": "com.UCMobile.intl",
      "utc": "+8",
      "currency": "USD",
      "location": "hk"
    },
    {
      "click": 3,
      "uuid": "uc_xx_gp2",
      "install": 0,
      "geo": ["CN", "US"],
      "impression": 0,
      "spend": 0,
      "offer_id": 885,
      "offer_name": "uc_android_test",
      "preview_link": "https://play.google.com/store/apps/details?id=com.UCMobile.intl",
      "platform": "android",
      "package_name": "com.UCMobile.intl",
      "utc": "+8",
      "currency": "USD",
      "location": "hk"
    }
  ]
}