Yandex Webmaster
Manage Yandex Webmaster sites, sitemaps, and search queries via the API
ya
Yandex Webmaster is the official SEO toolset for monitoring and managing sites in Yandex Search. Its API v4 provides access to verified sites, sitemap management, and search query analytics.
With the Yandex Webmaster integration in AACFlow, you can:
- Get Sites: Retrieve a list of verified sites in Yandex Webmaster
- Get Sitemaps: List sitemaps submitted for a specific host
- Popular Queries: Retrieve top search queries driving traffic to a site
This integration enables automated SEO monitoring, sitemap management, and search performance reporting for Russian-language websites.
Usage Instructions
Integrate Yandex Webmaster into the workflow to access SEO data. Requires a Yandex OAuth token from oauth.yandex.ru. You also need your Yandex User ID, available from the Webmaster API /user endpoint.
Tools
yandex_webmaster_get_sites
Get verified sites list
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
oauthToken | string | Yes | Yandex OAuth token |
Output
| Parameter | Type | Description |
|---|---|---|
sites | array | Array of verified site objects |
count | number | Number of sites |
yandex_webmaster_get_sitemaps
Get sitemaps for a host
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
oauthToken | string | Yes | Yandex OAuth token |
userId | string | Yes | Your Yandex user ID |
hostId | string | Yes | Host ID (e.g., https:example.com:443) |
Output
| Parameter | Type | Description |
|---|---|---|
sitemaps | array | Array of sitemap objects |
yandex_webmaster_popular_queries
Get popular search queries
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
oauthToken | string | Yes | Yandex OAuth token |
userId | string | Yes | Your Yandex user ID |
hostId | string | Yes | Host ID (e.g., https:example.com:443) |
queryDateFrom | string | No | Start date filter (YYYY-MM-DD) |
queryDateTo | string | No | End date filter (YYYY-MM-DD) |
Output
| Parameter | Type | Description |
|---|---|---|
queries | array | Array of popular query objects with impression data |
Links
- Official API: https://yandex.ru/dev/webmaster/
- AACFlow block source: apps/aacflow/blocks/blocks/yandex_webmaster.ts

