vk_get_raw
Retrieve data from any VK API endpoint by specifying its path, including endpoints not in the standard catalog. Supports GET, HEAD, and OPTIONS requests with custom query, body, and host parameters.
Instructions
Read ANY endpoint by path, including ones missing from the catalog.
Target API: https://dev.vk.com/ru/method.
Safe verbs only (GET, HEAD, OPTIONS). To change data use vk_write_raw, to delete use vk_delete_raw.
Args: path: full path beginning with '/', e.g. "/". method: safe verb, GET by default. host: host override; defaults to the service's default host. query: query-string parameters. body: JSON request body (rare on reads; some APIs want one). Returns JSON: {"ok": true, "status", "data"} or the error envelope.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | ||
| host | No | ||
| path | Yes | ||
| query | No | ||
| method | No | GET |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |