> ## 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/destinations/search

> Look up SafariBookings destinations by name: safari countries, parks and reserves, regions and circuits, towns, cities, villages, beaches, islands, lakes, rivers, mountains, airstrips and highlights. Each entry comes back with its full and short name, what kind of place it is, the safari type it is normally visited for, the chain of areas it sits inside from the immediate one up to the country, every country it spans (cross-border places such as the Zambezi River belong to several), its alternative spellings and the slug to use as the destination filter of the tour and operator search.

**Price:** 1 credit



## OpenAPI

````yaml /openapi/travel-hospitality.json post /api/safaribookings/destinations/search
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/destinations/search:
    post:
      tags:
        - /safaribookings
      summary: /safaribookings/destinations/search
      description: >-
        Look up SafariBookings destinations by name: safari countries, parks and
        reserves, regions and circuits, towns, cities, villages, beaches,
        islands, lakes, rivers, mountains, airstrips and highlights. Each entry
        comes back with its full and short name, what kind of place it is, the
        safari type it is normally visited for, the chain of areas it sits
        inside from the immediate one up to the country, every country it spans
        (cross-border places such as the Zambezi River belong to several), its
        alternative spellings and the slug to use as the destination filter of
        the tour and operator search.


        **Price:** 1 credit
      operationId: __api_safaribookings_destinations_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SafaribookingsDestinationsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SafaribookingsDestination'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SafaribookingsDestinationsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        keyword:
          type: string
          default: ''
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - count
    SafaribookingsDestination:
      properties:
        '@type':
          type: string
          default: SafaribookingsDestination
        id:
          type: string
        name:
          type: string
        short_name:
          anyOf:
            - type: string
            - type: 'null'
        kind:
          anyOf:
            - type: string
            - type: 'null'
        default_activity:
          anyOf:
            - type: string
            - type: 'null'
        region:
          anyOf:
            - type: string
            - type: 'null'
        region_path:
          items:
            type: string
          type: array
          default: []
        country:
          anyOf:
            - type: string
            - type: 'null'
        countries:
          items:
            type: string
          type: array
          default: []
        country_alias:
          anyOf:
            - type: string
            - type: 'null'
        country_aliases:
          items:
            type: string
          type: array
          default: []
        is_main_country:
          anyOf:
            - type: boolean
            - type: 'null'
        aliases:
          items:
            type: string
          type: array
          default: []
        alias:
          anyOf:
            - type: string
            - type: 'null'
        destination_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      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

````