Skip to main content
POST
/
api
/
yandexmaps
/
organizations
/
reviews
/yandexmaps/organizations/reviews
curl --request POST \
  --url https://api.anysite.io/api/yandexmaps/organizations/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "organization": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@yandex_maps_review",
    "text": "<string>",
    "rating": 123,
    "language": "<string>",
    "updated_at": "<string>",
    "like_count": 123,
    "dislike_count": 123,
    "author": {
      "@type": "@yandex_maps_review_author",
      "id": "<string>",
      "name": "<string>",
      "image": "<string>",
      "level": "<string>"
    },
    "photos": [],
    "business_reply": "<string>",
    "business_reply_at": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
organization
string
required

Yandex Maps organization permalink (numeric id) or a full organization URL

Minimum string length: 1
Examples:

"230955670099"

"https://yandex.ru/maps/org/espressobar/230955670099/"

count
integer
required

Max number of reviews to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@yandex_maps_review
text
string | null
rating
integer | null
language
string | null
updated_at
string | null
like_count
integer | null
dislike_count
integer | null
author
YandexMapsReviewAuthor · object
photos
string[]
business_reply
string | null
business_reply_at
string | null