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

> Search SafariBookings safari tours by destination and the full set of marketplace filters: comfort level, private or shared, camping or lodge, specialized themes such as gorilla tracking or photographic safaris, airport transfer and customizable itineraries, operator office country, departure city, minimum operator rating, a specific operator, a specific lodge or camp, price range and tour length. Each tour comes back with its title, duration, price range in the requested currency, countries, comfort and accommodation type, day-by-day route stops and the offering tour operator with its rating and review count.

**Price:** 1 credit

**⚠️ Common errors:** 412: Destination slug does not exist on SafariBookings



## OpenAPI

````yaml /openapi/travel-hospitality.json post /api/safaribookings/tours/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/tours/search:
    post:
      tags:
        - /safaribookings
      summary: /safaribookings/tours/search
      description: >-
        Search SafariBookings safari tours by destination and the full set of
        marketplace filters: comfort level, private or shared, camping or lodge,
        specialized themes such as gorilla tracking or photographic safaris,
        airport transfer and customizable itineraries, operator office country,
        departure city, minimum operator rating, a specific operator, a specific
        lodge or camp, price range and tour length. Each tour comes back with
        its title, duration, price range in the requested currency, countries,
        comfort and accommodation type, day-by-day route stops and the offering
        tour operator with its rating and review count.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Destination slug does not exist on
        SafariBookings
      operationId: __api_safaribookings_tours_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SafaribookingsToursSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SafaribookingsTourCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SafaribookingsToursSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        destination:
          type: string
          default: ''
        comfort:
          items:
            $ref: '#/components/schemas/SafaribookingsComfort'
          type: array
          default: []
        tour_type:
          items:
            $ref: '#/components/schemas/SafaribookingsTourType'
          type: array
          default: []
        safari_style:
          items:
            $ref: '#/components/schemas/SafaribookingsSafariStyle'
          type: array
          default: []
        specialized:
          items:
            $ref: '#/components/schemas/SafaribookingsSpecializedTour'
          type: array
          default: []
        features:
          items:
            $ref: '#/components/schemas/SafaribookingsTourFeature'
          type: array
          default: []
        operator_countries:
          items:
            $ref: '#/components/schemas/SafaribookingsOperatorCountry'
          type: array
          default: []
        departure_cities:
          items:
            $ref: '#/components/schemas/SafaribookingsDepartureCity'
          type: array
          default: []
        min_operator_rating:
          anyOf:
            - type: integer
              maximum: 5
              minimum: 1
            - type: 'null'
        operator:
          type: string
          default: ''
        accommodation:
          type: string
          default: ''
        min_price:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
        max_price:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
        min_days:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
        max_days:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
        currency:
          $ref: '#/components/schemas/SafaribookingsCurrency'
          default: USD
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - count
    SafaribookingsTourCard:
      properties:
        '@type':
          type: string
          default: SafaribookingsTourCard
        id:
          type: string
        tour_title:
          type: string
        duration_days:
          anyOf:
            - type: integer
            - type: 'null'
        duration_label:
          anyOf:
            - type: string
            - type: 'null'
        price_from:
          anyOf:
            - type: number
            - type: 'null'
        price_to:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        countries:
          items:
            type: string
          type: array
          default: []
        tour_type:
          anyOf:
            - type: string
            - type: 'null'
        max_pax:
          anyOf:
            - type: integer
            - type: 'null'
        comfort:
          anyOf:
            - type: string
            - type: 'null'
        accommodation_type:
          anyOf:
            - type: string
            - type: 'null'
        route:
          items:
            $ref: '#/components/schemas/SafaribookingsRouteStop'
          type: array
          default: []
        operator:
          anyOf:
            - $ref: '#/components/schemas/SafaribookingsTourOperatorRef'
            - type: 'null'
        badges:
          items:
            type: string
          type: array
          default: []
        image:
          anyOf:
            - type: string
            - type: 'null'
        tour_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - tour_title
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    SafaribookingsComfort:
      type: string
      enum:
        - luxury_plus
        - luxury
        - mid_range
        - budget
    SafaribookingsTourType:
      type: string
      enum:
        - private
        - shared
    SafaribookingsSafariStyle:
      type: string
      enum:
        - lodge_hotel_or_tented_camp
        - camping
    SafaribookingsSpecializedTour:
      type: string
      enum:
        - fly_in
        - family
        - beach
        - honeymoon
        - gorilla_tracking
        - photographic
        - climbing
        - walking
        - self_drive
        - guided_self_drive
        - chimp_tracking
        - overland
        - mountain_bike
        - canoe
        - horseback
        - birding
        - disabled_access
        - golf_and_wildlife
        - yoga
    SafaribookingsTourFeature:
      type: string
      enum:
        - airport_transfer_included
        - itinerary_can_be_customized
    SafaribookingsOperatorCountry:
      type: string
      enum:
        - australia
        - belgium
        - botswana
        - brazil
        - canada
        - comoros
        - denmark
        - eswatini
        - ethiopia
        - france
        - germany
        - greece
        - india
        - ireland
        - italy
        - kenya
        - lesotho
        - madagascar
        - malawi
        - mauritius
        - mayotte
        - mozambique
        - namibia
        - netherlands
        - new_zealand
        - nigeria
        - norway
        - portugal
        - reunion
        - russia
        - rwanda
        - seychelles
        - singapore
        - south_africa
        - spain
        - sweden
        - switzerland
        - tanzania
        - uganda
        - united_arab_emirates
        - united_kingdom
        - usa
        - zambia
        - zimbabwe
    SafaribookingsDepartureCity:
      type: string
      enum:
        - addis_ababa
        - antananarivo
        - arba_minch
        - arusha
        - blantyre
        - brazzaville
        - bujumbura
        - bulawayo
        - cape_town
        - dar_es_salaam
        - diani_beach
        - durban
        - entebbe
        - gondar
        - gqeberha
        - harare
        - hazyview
        - hoedspruit
        - iringa
        - jinka
        - johannesburg
        - kabale
        - kampala
        - kasane
        - kigali
        - kigoma
        - kisoro
        - lalibela
        - lilongwe
        - livingstone
        - lusaka
        - malindi
        - maputo
        - maun
        - mbombela
        - mekele
        - mfuwe
        - mombasa
        - morondava
        - moshi
        - mwanza
        - nairobi
        - nosy_be
        - semara
        - skukuza
        - upington
        - victoria_falls
        - windhoek
        - zanzibar
    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
    SafaribookingsRouteStop:
      properties:
        '@type':
          type: string
          default: SafaribookingsRouteStop
        name:
          type: string
        tag:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    SafaribookingsTourOperatorRef:
      properties:
        '@type':
          type: string
          default: SafaribookingsTourOperatorRef
        name:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        office_countries:
          items:
            $ref: '#/components/schemas/SafaribookingsCountryRef'
          type: array
          default: []
      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
    SafaribookingsCountryRef:
      properties:
        '@type':
          type: string
          default: SafaribookingsCountryRef
        name:
          anyOf:
            - type: string
            - type: 'null'
        code:
          anyOf:
            - type: string
            - type: 'null'
      type: object
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````