> ## 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

> Get a SafariBookings national park or reserve guide by its slug: full name and short name, the country it lies in, the expert introduction, best time to go, high season, size and altitude, separate expert and traveller ratings broken down into wildlife, scenery, bush vibe and birding, pros and cons, the long-form guide sections on wildlife, scenery, activities, weather and when to visit, the author of the guide, how many safaris go there, the header photo, Wikipedia link and map.

**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
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:
    post:
      tags:
        - /safaribookings
      summary: /safaribookings/parks
      description: >-
        Get a SafariBookings national park or reserve guide by its slug: full
        name and short name, the country it lies in, the expert introduction,
        best time to go, high season, size and altitude, separate expert and
        traveller ratings broken down into wildlife, scenery, bush vibe and
        birding, pros and cons, the long-form guide sections on wildlife,
        scenery, activities, weather and when to visit, the author of the guide,
        how many safaris go there, the header photo, Wikipedia link and map.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Park not found (slug with no SafariBookings
        park guide)
      operationId: __api_safaribookings_parks_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SafaribookingsParksPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SafaribookingsPark'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SafaribookingsParksPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        park:
          type: string
          minLength: 1
      type: object
      required:
        - park
    SafaribookingsPark:
      properties:
        '@type':
          type: string
          default: SafaribookingsPark
        alias:
          type: string
        name:
          type: string
        short_name:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        best_time_to_go:
          anyOf:
            - type: string
            - type: 'null'
        high_season:
          anyOf:
            - type: string
            - type: 'null'
        size:
          anyOf:
            - type: string
            - type: 'null'
        altitude:
          anyOf:
            - type: string
            - type: 'null'
        user_ratings:
          anyOf:
            - $ref: '#/components/schemas/SafaribookingsSubjectRatings'
            - type: 'null'
        expert_ratings:
          anyOf:
            - $ref: '#/components/schemas/SafaribookingsSubjectRatings'
            - type: 'null'
        pros:
          items:
            type: string
          type: array
          default: []
        cons:
          items:
            type: string
          type: array
          default: []
        sections:
          items:
            $ref: '#/components/schemas/SafaribookingsSubjectSection'
          type: array
          default: []
        expert:
          anyOf:
            - $ref: '#/components/schemas/SafaribookingsSubjectExpert'
            - type: 'null'
        tour_count:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        wikipedia_url:
          anyOf:
            - type: string
            - type: 'null'
        map_url:
          anyOf:
            - type: string
            - type: 'null'
        park_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - alias
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    SafaribookingsSubjectRatings:
      properties:
        '@type':
          type: string
          default: SafaribookingsSubjectRatings
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        sub_ratings:
          anyOf:
            - $ref: '#/components/schemas/SafaribookingsSubRatings'
            - type: 'null'
      type: object
    SafaribookingsSubjectSection:
      properties:
        '@type':
          type: string
          default: SafaribookingsSubjectSection
        heading:
          type: string
        text:
          type: string
      type: object
      required:
        - heading
        - text
    SafaribookingsSubjectExpert:
      properties:
        '@type':
          type: string
          default: SafaribookingsSubjectExpert
        name:
          anyOf:
            - type: string
            - type: 'null'
        bio:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        links:
          items:
            type: string
          type: array
          default: []
        expert_url:
          anyOf:
            - type: string
            - 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
    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
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````