Raw Yandex Metrica API call
raw_requestSend raw HTTP requests to any Yandex Metrica API path, including management and stat endpoints, with custom query parameters and JSON body. Use for endpoints without a dedicated tool.
Instructions
Escape hatch to call any Yandex Metrica API path directly — e.g. "management/v1/counters", "management/v1/counter/{id}/goals", "stat/v1/data". Use it for endpoints without a dedicated tool. query becomes the query string; body is sent as JSON for POST. GET runs freely; POST and DELETE are writes and require confirmWrite=true.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | JSON body for POST requests. | |
| path | Yes | API path, e.g. "stat/v1/data" or "management/v1/counter/12345/goals". | |
| query | No | Query string parameters (ids, metrics, dimensions, date1, date2, ...). | |
| method | No | HTTP method. Default GET. | |
| confirmWrite | No | Must be true for a write (POST or DELETE). |