> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hobbo.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# GetYourGuide Reviews

> This endpoint fetches traveler reviews, ratings, and media from a GetYourGuide activity page identified by its public URL or activity ID.



## OpenAPI

````yaml POST /getyourguide/reviews
openapi: 3.1.0
info:
  title: OpenAPI Plant Store
  description: >-
    A sample API that uses a plant store as an example to demonstrate features
    in the OpenAPI specification
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.hobbo.ai
    description: Main API server
  - url: https://py-api.hobbo.ai
    description: Python API server for scraper endpoints
security:
  - ApiKeyAuth: []
paths:
  /getyourguide/reviews:
    post:
      description: >-
        This endpoint fetches traveler reviews, ratings, and media from a
        GetYourGuide activity page identified by its public URL or activity ID.
      requestBody:
        description: GetYourGuide review scraping parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GetyourguideReviewsRequest'
        required: true
      responses:
        '200':
          description: Reviews fetched successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetyourguideReviewsResponse'
              examples:
                validationError:
                  value:
                    all_reviews: []
                    extra_information: {}
                    message: <string>
        '400':
          description: Validation error or unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                validationError:
                  value:
                    error: <string>
      servers:
        - url: https://py-api.hobbo.ai
components:
  schemas:
    GetyourguideReviewsRequest:
      type: object
      required:
        - query
      properties:
        query:
          type: string
          description: Provide the GetYourGuide activity URL or identifier.
        reviews_to_fetch:
          type:
            - number
            - 'null'
          description: >-
            Number of reviews to fetch (default: all reviews, or within
            30-second timeout).
        sync_date:
          type:
            - string
            - 'null'
          description: 'Fetches reviews posted on a specific date using format: YYYY-MM-DD.'
        is_text_formatted:
          type: boolean
          description: Returns the review text with visual formatting preserved.
          default: true
        pagination_data:
          type:
            - object
            - 'null'
          description: Pagination metadata returned by previous API calls.
    GetyourguideReviewsResponse:
      type: object
      properties:
        all_reviews:
          type: array
          description: Array of fetched reviews
          items:
            type: object
            properties:
              query:
                type:
                  - string
                  - 'null'
                description: Original query URL
              review_id:
                type:
                  - string
                  - number
                  - 'null'
                description: Identifier of the review
              activity_id:
                type:
                  - string
                  - number
                  - 'null'
                description: GetYourGuide activity identifier
              author_name:
                type:
                  - string
                  - 'null'
                description: Full name of the reviewer
              author_country:
                type:
                  - string
                  - 'null'
                description: Country of the reviewer
              review_text:
                type:
                  - string
                  - 'null'
                description: Content of the review
              review_language:
                type:
                  - string
                  - 'null'
                description: Language of the review
              traveler_type:
                type:
                  - string
                  - 'null'
                description: Traveler type associated with the review
              review_date:
                type:
                  - string
                  - 'null'
                description: Date when the review was posted
              review_rating:
                type:
                  - number
                  - string
                  - 'null'
                description: Rating given in the review
              review_title:
                type:
                  - string
                  - 'null'
                description: Title of the review
              is_partner_review:
                type:
                  - boolean
                  - 'null'
                description: Whether the review was sourced via a partner integration
              review_media:
                type:
                  - array
                  - 'null'
                description: Media files attached to the review
                items:
                  type: object
                  properties:
                    review_media_type:
                      type:
                        - string
                        - 'null'
                      description: Type of media (e.g., image)
                    review_media_url:
                      type:
                        - string
                        - 'null'
                      description: Display URL for the media
                    review_media_url_org:
                      type:
                        - string
                        - 'null'
                      description: Original/full-size media URL
              review_stat:
                type:
                  - object
                  - 'null'
                description: Additional stats such as helpful votes
                additionalProperties:
                  type:
                    - string
                    - number
                    - boolean
                    - 'null'
        extra_information:
          type: object
          properties:
            extra_information:
              type: object
              properties:
                pagination_data:
                  type:
                    - object
                    - 'null'
                  description: Pagination metadata returned by GetYourGuide
              description: Additional metadata about the activity and reviews
            total_review_count:
              type:
                - integer
                - 'null'
              description: Total number of reviews fetched
            total_review_count_list:
              type:
                - array
                - 'null'
              items:
                type: integer
              description: List of review counts per page
        message:
          type: string
          description: Status message about the review extraction
    Error:
      type: object
      properties:
        status:
          type: integer
          description: HTTP status code
        data:
          type: object
          description: Empty object or additional error data
        success:
          type: boolean
          description: Indicates operation failed
          example: false
        message:
          type: string
          description: Error message describing what went wrong

````