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

> Get a SafariBookings safari country guide by its slug: name, expert introduction, typical daily rate range per person in the requested currency, best time to go, high season and size, separate expert and traveller ratings broken down into wildlife, scenery, bush vibe and birding, pros and cons, the long-form guide sections, the headline parks and reserves, the author of the guide, how many safaris are on offer, header photo, Wikipedia link and map.

**Price:** 1 credit

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



## OpenAPI

````yaml /openapi/travel-hospitality.json post /api/safaribookings/countries
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/countries:
    post:
      tags:
        - /safaribookings
      summary: /safaribookings/countries
      description: >-
        Get a SafariBookings safari country guide by its slug: name, expert
        introduction, typical daily rate range per person in the requested
        currency, best time to go, high season and size, separate expert and
        traveller ratings broken down into wildlife, scenery, bush vibe and
        birding, pros and cons, the long-form guide sections, the headline parks
        and reserves, the author of the guide, how many safaris are on offer,
        header photo, Wikipedia link and map.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Country not found (slug with no
        SafariBookings country guide)
      operationId: __api_safaribookings_countries_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SafaribookingsCountriesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SafaribookingsCountry'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SafaribookingsCountriesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        country:
          type: string
          minLength: 1
        currency:
          $ref: '#/components/schemas/SafaribookingsCurrency'
          default: USD
      type: object
      required:
        - country
    SafaribookingsCountry:
      properties:
        '@type':
          type: string
          default: SafaribookingsCountry
        alias:
          type: string
        name:
          type: string
        rate_from:
          anyOf:
            - type: number
            - type: 'null'
        rate_to:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          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'
        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: []
        parks:
          items:
            $ref: '#/components/schemas/SafaribookingsSubjectLink'
          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'
        country_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - alias
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    SafaribookingsCurrency:
      type: string
      enum:
        - USD
        - CAD
        - EUR
        - CHF
        - CZK
        - DKK
        - GBP
        - HUF
        - ISK
        - NOK
        - PLN
        - RON
        - RUB
        - SEK
        - TRY
        - AUD
        - NZD
        - AED
        - CNY
        - HKD
        - ILS
        - INR
        - JPY
        - KRW
        - KWD
        - MYR
        - QAR
        - SAR
        - SGD
        - TWD
        - EGP
        - NAD
        - ZAR
        - ARS
        - BRL
        - CLP
        - MXN
    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
    SafaribookingsSubjectLink:
      properties:
        '@type':
          type: string
          default: SafaribookingsSubjectLink
        name:
          type: string
        note:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    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

````