Skip to main content
POST
/
api
/
yandexmaps
/
organizations
/
rating
/yandexmaps/organizations/rating
curl --request POST \
  --url https://api.anysite.io/api/yandexmaps/organizations/rating \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "organization": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@yandex_maps_rating",
    "rating": 123,
    "rating_count": 123,
    "review_count": 123,
    "aspects": []
  }
]

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/"

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_rating
rating
number | null
rating_count
integer | null
review_count
integer | null
aspects
YandexMapsRatingAspect · object[]