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

> Search the SafariBookings directory of African safari tour operators by destination, company name, office country, comfort level, price bracket per person per day, specialization such as photographic or self-drive safaris, the extras they can arrange and their minimum customer rating. Each operator comes back with its rating and review count, offices, destinations, the kind of tours it runs, its price range in the requested currency, how many tours it offers, a sample of its headline tours with their starting price, logo and team photo.

**Price:** 1 credit

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



## OpenAPI

````yaml /openapi/travel-hospitality.json post /api/safaribookings/operators/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/operators/search:
    post:
      tags:
        - /safaribookings
      summary: /safaribookings/operators/search
      description: >-
        Search the SafariBookings directory of African safari tour operators by
        destination, company name, office country, comfort level, price bracket
        per person per day, specialization such as photographic or self-drive
        safaris, the extras they can arrange and their minimum customer rating.
        Each operator comes back with its rating and review count, offices,
        destinations, the kind of tours it runs, its price range in the
        requested currency, how many tours it offers, a sample of its headline
        tours with their starting price, logo and team photo.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Destination slug does not exist on
        SafariBookings
      operationId: __api_safaribookings_operators_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SafaribookingsOperatorsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SafaribookingsOperatorCard'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SafaribookingsOperatorsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        destination:
          type: string
          default: ''
        name:
          type: string
          default: ''
        office_countries:
          items:
            $ref: '#/components/schemas/SafaribookingsOperatorCountry'
          type: array
          default: []
        comfort:
          items:
            $ref: '#/components/schemas/SafaribookingsOperatorComfort'
          type: array
          default: []
        price_ranges:
          items:
            $ref: '#/components/schemas/SafaribookingsOperatorPriceRange'
          type: array
          default: []
        specializations:
          items:
            $ref: '#/components/schemas/SafaribookingsOperatorSpecialization'
          type: array
          default: []
        services:
          items:
            $ref: '#/components/schemas/SafaribookingsOperatorService'
          type: array
          default: []
        min_rating:
          anyOf:
            - type: integer
              maximum: 5
              minimum: 1
            - type: 'null'
        currency:
          $ref: '#/components/schemas/SafaribookingsCurrency'
          default: USD
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - count
    SafaribookingsOperatorCard:
      properties:
        '@type':
          type: string
          default: SafaribookingsOperatorCard
        id:
          type: string
        name:
          type: string
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        office_countries:
          items:
            $ref: '#/components/schemas/SafaribookingsCountryRef'
          type: array
          default: []
        destinations:
          items:
            $ref: '#/components/schemas/SafaribookingsCountryRef'
          type: array
          default: []
        tour_types:
          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'
        tour_count:
          anyOf:
            - type: integer
            - type: 'null'
        top_tours:
          items:
            $ref: '#/components/schemas/SafaribookingsOperatorTopTour'
          type: array
          default: []
        image:
          anyOf:
            - type: string
            - type: 'null'
        photo:
          anyOf:
            - type: string
            - type: 'null'
        profile_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    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
    SafaribookingsOperatorComfort:
      type: string
      enum:
        - luxury
        - mid_range
        - budget
    SafaribookingsOperatorPriceRange:
      type: string
      enum:
        - up_to_150
        - from_151_to_300
        - from_301_to_500
        - from_501_to_750
        - from_751
    SafaribookingsOperatorSpecialization:
      type: string
      enum:
        - custom_private_tours
        - shared_group_tours
        - day_tours
        - self_drive
        - guided_self_drive
        - photographic
        - horseback
        - canoe
        - birding
        - golf_and_wildlife
        - disabled_access
    SafaribookingsOperatorService:
      type: string
      enum:
        - international_flights
        - airport_transfers
        - pre_post_accommodation
        - pre_post_transfers
        - domestic_flights
        - custom_tour_extensions
    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
    SafaribookingsCountryRef:
      properties:
        '@type':
          type: string
          default: SafaribookingsCountryRef
        name:
          anyOf:
            - type: string
            - type: 'null'
        code:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    SafaribookingsOperatorTopTour:
      properties:
        '@type':
          type: string
          default: SafaribookingsOperatorTopTour
        id:
          anyOf:
            - type: string
            - type: 'null'
        tour_title:
          type: string
        price_from:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        tour_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - tour_title
    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

````