Indicators
Parameters of this type determine which indicators will be in the final response to statistics requests. The report must include at least one parameter from this section.
Available parameters are listed in the measures section of the GET /constructor_filters/api/ operation.
In the interface, these parameters are shown here:

Groups of indicators
All indicators are classified into groups:
metrics— Numerical metrics.analitics— Analytical metrics.partner_reward— Partner reward.
The actual content of the groups depends on the indicators available to you. By default, all indicators have the value of false and aren't included in the final report. To add an indicator to the report, set the value to true.
When filling out your request, you may omit indicators and groups of indicators you don't need in your report. If you have selected some indicator for the report, save its nested level (group).
How to fill out a request
Example 1
You only need the “Clicks for Direct” indicator. In this case, you can replace the measures section as follows:
Example code
{
"id": "measures",
"fields": [
{
"id": "Metrics",
"value": [
{
"id": "mrevenuesharestatistics_rs_clicks",
"value": true
}
]
}
]
}
Example 2
You need the indicators “Clicks for Direct” and “Partner share for RS Direct”. In this case, you can replace the measures section as follows:
Example code
{
"id": "measures",
"fields": [
{
"id": "Metrics",
"value": [
{
"id": "mrevenuesharestatistics_rs_clicks",
"value": true
}
]
},
{
"id": "partner_reward",
"value": [
{
"id": "mrevenuesharestatistics_partner_wo_nds",
"value": true
}
]
}
]
}
Example 3
You need the indicators “Clicks for Direct”, “Views for Direct”, and “Partner share for RS Direct”. In this case, you can replace the measures section as follows:
Example code
{
"id": "measures",
"fields": [
{
"id": "Metrics",
"value": [
{
"id": "mrevenuesharestatistics_rs_clicks",
"value": true
},
{
"id": "mrevenuesharestatistics_rs_shows",
"value": true
}
]
},
{
"id": "partner_reward",
"value": [
{
"id": "mrevenuesharestatistics_partner_wo_nds",
"value": true
}
]
}
]
}
Example of indicators
{
"id": "measures",
"fields": [
{
"id": "Metrics",
"value": [
{
"id": "mmarketwidgetvisitsstatistics_widget_visits",
"value": false,
"label": "Visits to the Market"
},
{
"id": "mrevenuesharestatistics_rs_clicks",
"value": false,
"label": "Clicks for Direct"
},
{
"id": "mmarketcparsstatistics_market_cpa_orders",
"value": false,
"label": "Paid orders on Yandex Market"
},
{
"id": "mmarketrsstatistics_market_clicks_cpc",
"value": false,
"label": "Paid clicks on Yandex Market"
},
{
"id": "mmarketapprovedordersstatistics_orders",
"value": false,
"label": "Approved orders"
},
{
"id": "msearchstatistics_searches",
"value": false,
"label": "Searches"
},
{
"id": "mrevenuesharestatistics_rs_shows",
"value": false,
"label": "Views for Direct"
},
{
"id": "mmarketcreatedordersstatistics_partner_wo_nds",
"value": false,
"label": "Potential reward for created orders"
},
{
"id": "mmarketcreatedordersstatistics_orders",
"value": false,
"label": "Created orders"
}
],
"label": "Metrics"
},
{
"id": "analitics",
"value": [
{
"id": "mrevenuesharestatistics_cpc_partner_direct",
"value": false,
"label": "CPC partner Direct"
},
{
"id": "mrevenuesharestatistics_cpm_partner_direct",
"value": false,
"label": "CPM partner Direct"
},
{
"id": "mrevenuesharestatistics_ctr_direct",
"value": false,
"label": "CTR for Direct"
},
{
"id": "mmarketcparsstatistics_market_eCPA",
"value": false,
"label": "Yandex Market eCPA"
},
{
"id": "mmarketpartnerwidgetstatistics_eCPA_approved",
"value": false,
"label": "eCPA for confirmed orders"
},
{
"id": "mmarketpartnerwidgetstatistics_eCPA_created",
"value": false,
"label": "eCPA for created orders"
},
{
"id": "mmarketrsstatistics_market_eCPC",
"value": false,
"label": "eCPC"
},
{
"id": "mmarketpartnerwidgetstatistics_clickout_conversion",
"value": false,
"label": "Conversion to a paid click of the Market from the display of the widget"
},
{
"id": "mmarketpartnerwidgetstatistics_conversion_to_order",
"value": false,
"label": "Conversion to a created order"
},
{
"id": "mmarketpartnerwidgetstatistics_conversion_visits_to_order",
"value": false,
"label": "Conversion to a paid click of the Market from the display of the widget"
}
],
"label": "Analytical metrics"
},
{
"id": "partner_reward",
"value": [
{
"id": "default_fixed_partner_reward_metric",
"value": false,
"label": "Reward"
},
{
"id": "mdiscoverypartnerstatistics_partner_wo_nds",
"value": false,
"label": "for RS Discovery"
},
{
"id": "mrevenuesharestatistics_partner_wo_nds",
"value": false,
"label": "for RS Direct"
},
{
"id": "mmarketrsstatistics_partner_wo_nds",
"value": false,
"label": "for paid clicks on Yandex Market"
},
{
"id": "mmarketapprovedordersstatistics_partner_wo_nds",
"value": false,
"label": "for approved orders on YandexMarket"
}
],
"label": "Partner reward"
}
]
}