Skip to main content
GET
/
report
/
apps
report/apps
curl --request GET \
  --url https://provisioning.cloudx.io/api/v1/report/apps \
  --header 'Authorization: Bearer <token>'
{
  "apps": [
    {
      "app_id": "<string>",
      "name": "<string>",
      "platform": "<string>",
      "revenue": 123,
      "impressions": 123,
      "fill_rate": 123,
      "ecpm": 123,
      "source": "<string>",
      "revenue_share": 123
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.cloudx.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
default:YOUR_CLOUDX_API_KEY
required

Create or manage API keys in CloudX Settings.

Query Parameters

start_time
integer<int64>
required

Start of the time range as a Unix timestamp in seconds. The requested range must not exceed 31 days.

end_time
integer<int64>
required

End of the time range as a Unix timestamp in seconds. The requested range must not exceed 31 days.

test_mode
enum<string>
default:production

Traffic mode to include. Defaults to production traffic.

Available options:
production,
test,
all
country
string

ISO 3166-1 alpha-2 country code filter.

device_os
enum<string>

Device operating system filter.

Available options:
iOS,
Android
source
string

Reporting source filter. Use cloudx, a mediation source such as applovin, a comma-separated list such as cloudx,admob, or all.

Response

App performance data.

apps
object[]
required
Maximum array length: 100000