Yandex Business (Яндекс Бизнес)
Manage company cards in Yandex Maps and Yandex Search — view organizations, read and reply to reviews.
Yandex Business (Яндекс Бизнес)
Яндекс Бизнес lets businesses manage their presence in Yandex Maps and Yandex Search — company cards, addresses, hours, photos, and customer reviews.
Note: The Yandex Business public API is in limited / partner access. It is not available to all developers. Apply for access via your Yandex partner account at https://yandex.ru/dev/business/doc/ru/concepts/access.html.
Official API documentation: https://yandex.ru/dev/business/doc/ru/concepts/access.html
Setup
- Apply for Yandex Business API access at the link above and wait for approval.
- Once approved, obtain a Yandex OAuth token with the
business:readscope (for read operations) orbusiness:write(for update/respond operations). Use the Yandex OAuth flow at https://oauth.yandex.ru/. - In AACFlow, add a Yandex Business block and paste the OAuth token into the API Token field (stored as a secret).
Operations
| Operation | Description |
|---|---|
yandex_business_get_organizations | List all organizations associated with the authenticated account. |
yandex_business_get_organization | Get details of a specific organization by its numeric ID. |
yandex_business_update_organization | Update organization details (name, address, hours, etc.) by ID. |
yandex_business_get_reviews | Retrieve customer reviews for an organization, with optional pagination. |
yandex_business_respond_review | Post an official reply to a customer review. |
Example workflow
A daily workflow calls yandex_business_get_reviews to fetch unresponded reviews, passes each review to an AI block to generate a polite reply, and submits it with yandex_business_respond_review.
Links
- Yandex Business API access: https://yandex.ru/dev/business/doc/ru/concepts/access.html
- Yandex Business portal: https://business.yandex.ru/
- Block source: apps/aacflow/blocks/blocks/yandex_business.ts

