跳转到主要内容
GET
/
auction
/
rounds
auction/rounds
curl --request GET \
  --url https://provisioning.cloudx.io/api/v1/auction/rounds \
  --header 'Authorization: Bearer <token>'
{
  "rounds": [
    {
      "auction_id": "<string>",
      "round_id": "<string>",
      "round_number": 123,
      "priority": 123,
      "account_id": "<string>",
      "event_time": "<string>",
      "app_bundle": "<string>",
      "app_name": "<string>",
      "ad_unit_id": "<string>",
      "device_os": "<string>",
      "device_country": "<string>",
      "sdk_version": "<string>",
      "test_mode": true,
      "line_item_count": 123,
      "bidder_count": 123,
      "bid_count": 123,
      "nonbid_count": 123,
      "bid_sum": 123,
      "has_winner": true,
      "winner_bidder": "<string>",
      "winner_line_item_id": "<string>",
      "winner_price_cpm": 123,
      "configured_floor": 123,
      "round_floor": 123,
      "floor_currency": "<string>",
      "dps_model": "<string>",
      "dps_model_version": "<string>",
      "experiment_group": "<string>",
      "shadow_mode": true,
      "round_duration_ms": 123
    }
  ],
  "metrics": [
    {
      "metric": "<string>",
      "key": "<string>",
      "round_number": 123,
      "count": 123,
      "avg_duration_ms": 123,
      "p50_duration_ms": 123,
      "p95_duration_ms": 123,
      "max_duration_ms": 123,
      "status": "<string>",
      "nonbid_reason": 123,
      "error_type": "<string>",
      "rejection_reason": "<string>"
    }
  ]
}

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.

授权

Authorization
string
header
默认值:YOUR_CLOUDX_API_KEY
必填

Create or manage API keys in CloudX Settings.

查询参数

auction_id
string

CloudX auction ID.

start_time
integer<int64>

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

end_time
integer<int64>

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

metric
enum<string>

Aggregate round metric to return when auction_id is omitted.

可用选项:
distribution,
duration,
cleared-on,
skip-reason
test_mode
enum<string>
默认值:production

Traffic mode to include. Defaults to production traffic.

可用选项:
production,
test,
all
app_bundle
string

App bundle identifier filter.

ad_unit_id
string

Ad unit ID filter.

country
string

ISO 3166-1 alpha-2 country code filter.

device_os
enum<string>

Device operating system filter.

可用选项:
iOS,
Android
limit
integer<int32>
默认值:50

Maximum number of rows to return.

必填范围: 1 <= x <= 500

响应

Auction round rows or aggregate metrics.

rounds
object[]
必填
Maximum array length: 500
metrics
object[]
必填
Maximum array length: 500