Applications

Retrieve your applications information

Get applications

GET https://api.ogury.io/reporting/v1/applications

This endpoint allows you to get the details of your applications.

Headers

NameTypeDescription

x-auth-apikey

string

The API Key

x-auth-secret

string

The API Secret

{
  "applications": [
    {
      "publisher_id": 1234,
      "publisher_name": "Your publisher name",
      "app_key": 456789,
      "error": null,
      "bundle": "com.my.bundle",
      "name": "My app - Android",
      "ad_unit_ids": [
        "456789_default",
        "338045bb-1200-485a-b635-04d7deba2b54",
        "f92a26fc-5f60-4020-9e73-7b130551d795"
      ],
      "platform": "ANDROID",
      "ad_unit_details": [
        {
          "id": "456789_default",
          "name": "Default",
          "type": "interstitial"
        },
        {
          "id": "338045bb-1200-485a-b635-04d7deba2b54",
          "name": "Rewarded_1",
          "type": "optin_video"
        },
        {
          "id": "f92a26fc-5f60-4020-9e73-7b130551d795",
          "name": "Inter_1",
          "type": "interstitial"
        }
      ]
    }
  ]
}

Example

curl -H 'Content-Type: application/json' \
     -H 'x-auth-apikey: MY_API_KEY' \
     -H 'x-auth-secret: MY_API_SECRET' \
     'https://api.ogury.io/reporting/v1/applications'

Last updated