Skip to main content

Examples

This page collects practical examples for the cloudx CLI. For command details and flag support, see Reporting Commands.

Reporting Basics

Dashboard Summary For Today By Default

cloudx report dashboard

Dashboard Summary Filtered By Country And Device OS

cloudx report dashboard --period last_7d --country US --device-os iOS

Dashboard JSON Output For A Custom Date Range

cloudx report dashboard --period 2026-04-01..2026-04-07 --json

Bidder Reports

Bidder Performance For Today By Default

cloudx report bidders

Include Both Production And Test Traffic

cloudx report bidders --period last_30d --test-mode all --country US

Bidder Report As JSON

cloudx report bidders --period yesterday --json

App Reports

App Performance For Today By Default

cloudx report apps

Filter By Device OS

cloudx report apps --period last_30d --device-os Android

Single-Day App Report As JSON

cloudx report apps --period 2026-04-01 --json

Ad Unit Reports

Ad Unit Performance For Today By Default

cloudx report ad-units

Filter By App And Ad Unit Type

cloudx report ad-units --app com.example.game --ad-unit-type BANNER

Ad Unit Report As JSON

cloudx report ad-units --period last_7d --country US --device-os iOS --json

Export

Export Today As CSV To Standard Output

cloudx report export

Export CSV Filtered By Country And Device OS

cloudx report export --period last_30d --country US --device-os iOS

Export JSON Instead Of CSV

cloudx report export --period 2026-04-01..2026-04-07 --json

Save CSV To A File

cloudx report export --period last_7d > report.csv

Combined Workflow

cloudx report dashboard
cloudx report bidders --period last_7d --country US
cloudx report ad-units --app com.example.game
cloudx report export --period last_7d > report.csv