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

# /safaribookings/parks/reviews

> Get the reviews of a SafariBookings national park or reserve, either the traveller reviews or the reviews written by the site's safari experts. Every review carries the author with their home country, when they visited, the overall rating plus separate wildlife, scenery, bush vibe and birding scores, the full text and, for expert reviews, the author biography and how many people found it helpful.

**Price:** 1 credit

**⚠️ Common errors:** 412: Park not found (slug with no SafariBookings park guide)



## OpenAPI

````yaml /openapi/travel-hospitality.json post /api/safaribookings/parks/reviews
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/safaribookings/parks/reviews:
    post:
      tags:
        - /safaribookings
      summary: /safaribookings/parks/reviews
      description: >-
        Get the reviews of a SafariBookings national park or reserve, either the
        traveller reviews or the reviews written by the site's safari experts.
        Every review carries the author with their home country, when they
        visited, the overall rating plus separate wildlife, scenery, bush vibe
        and birding scores, the full text and, for expert reviews, the author
        biography and how many people found it helpful.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Park not found (slug with no SafariBookings
        park guide)
      operationId: __api_safaribookings_parks_reviews_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SafaribookingsParksReviewsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SafaribookingsSubjectReview'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SafaribookingsParksReviewsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        park:
          type: string
          minLength: 1
        author:
          $ref: '#/components/schemas/SafaribookingsReviewAuthor'
          default: user
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - park
        - count
    SafaribookingsSubjectReview:
      properties:
        '@type':
          type: string
          default: SafaribookingsSubjectReview
        id:
          type: string
        author_type:
          type: string
        author_name:
          anyOf:
            - type: string
            - type: 'null'
        author_country:
          anyOf:
            - $ref: '#/components/schemas/SafaribookingsCountryRef'
            - type: 'null'
        author_bio:
          anyOf:
            - type: string
            - type: 'null'
        author_url:
          anyOf:
            - type: string
            - type: 'null'
        visited:
          anyOf:
            - type: string
            - type: 'null'
        reviewed_date:
          anyOf:
            - type: string
            - type: 'null'
        age_group:
          anyOf:
            - type: string
            - type: 'null'
        experience_level:
          anyOf:
            - type: string
            - type: 'null'
        review_title:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        sub_ratings:
          anyOf:
            - $ref: '#/components/schemas/SafaribookingsSubRatings'
            - type: 'null'
        helpful_count:
          anyOf:
            - type: integer
            - type: 'null'
        text:
          anyOf:
            - type: string
            - type: 'null'
        review_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - author_type
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    SafaribookingsReviewAuthor:
      type: string
      enum:
        - user
        - expert
    SafaribookingsCountryRef:
      properties:
        '@type':
          type: string
          default: SafaribookingsCountryRef
        name:
          anyOf:
            - type: string
            - type: 'null'
        code:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    SafaribookingsSubRatings:
      properties:
        '@type':
          type: string
          default: SafaribookingsSubRatings
        wildlife:
          anyOf:
            - type: number
            - type: 'null'
        scenery:
          anyOf:
            - type: number
            - type: 'null'
        bush_vibe:
          anyOf:
            - type: number
            - type: 'null'
        birding:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````