Skip to main content
POST
/
api
/
getyourguide
/
activities
/
reviews
/getyourguide/activities/reviews
curl --request POST \
  --url https://api.anysite.io/api/getyourguide/activities/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "activity": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": 123,
    "@type": "@get_your_guide_review",
    "rating": 123,
    "text": "<string>",
    "author": "<string>",
    "author_country": "<string>",
    "created_at": "<string>",
    "language": "<string>",
    "traveler_type": "<string>",
    "images": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
activity
string
required

GetYourGuide activity id (e.g. 193940 or t193940) or an activity page URL containing it

Minimum string length: 1
Examples:

"193940"

"https://www.getyourguide.com/paris-l16/paris-1-hour-seine-cruise-departing-from-the-eiffel-tower-t193940/"

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
integer
required
@type
string
default:@get_your_guide_review
rating
integer | null
text
string | null
author
string | null
author_country
string | null
created_at
string | null
language
string | null
traveler_type
string | null
images
string[]