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

> Get one SafariBookings tour operator by its id or profile URL: company name, customer rating with the review count per star level, short description and full company profile, the countries it has offices in and the destinations it sells, the kind of tours it runs, staff size and founding year, price range per person per day in the requested currency, how many tours it offers in total and per country, postal address, phone, website, logo and team photo.

**Price:** 1 credit

**⚠️ Common errors:** 412: Tour operator not found (well-formed id with no SafariBookings profile)



## OpenAPI

````yaml /openapi/travel-hospitality.json post /api/safaribookings/operators
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:
    post:
      tags:
        - /safaribookings
      summary: /safaribookings/operators
      description: >-
        Get one SafariBookings tour operator by its id or profile URL: company
        name, customer rating with the review count per star level, short
        description and full company profile, the countries it has offices in
        and the destinations it sells, the kind of tours it runs, staff size and
        founding year, price range per person per day in the requested currency,
        how many tours it offers in total and per country, postal address,
        phone, website, logo and team photo.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Tour operator not found (well-formed id with
        no SafariBookings profile)
      operationId: __api_safaribookings_operators_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SafaribookingsOperatorsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SafaribookingsOperator'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SafaribookingsOperatorsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        operator:
          type: string
          minLength: 1
        currency:
          $ref: '#/components/schemas/SafaribookingsCurrency'
          default: USD
      type: object
      required:
        - operator
    SafaribookingsOperator:
      properties:
        '@type':
          type: string
          default: SafaribookingsOperator
        id:
          type: string
        name:
          type: string
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        rating_breakdown:
          items:
            $ref: '#/components/schemas/SafaribookingsRatingBreakdown'
          type: array
          default: []
        company_profile:
          anyOf:
            - type: string
            - 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'
        employees:
          anyOf:
            - type: string
            - type: 'null'
        founded_in:
          anyOf:
            - type: integer
            - 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'
        tours_by_country:
          items:
            $ref: '#/components/schemas/SafaribookingsOperatorCountryTours'
          type: array
          default: []
        address:
          anyOf:
            - type: string
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        website:
          anyOf:
            - type: string
            - type: 'null'
        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
    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
    SafaribookingsRatingBreakdown:
      properties:
        '@type':
          type: string
          default: SafaribookingsRatingBreakdown
        stars:
          type: integer
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - stars
    SafaribookingsCountryRef:
      properties:
        '@type':
          type: string
          default: SafaribookingsCountryRef
        name:
          anyOf:
            - type: string
            - type: 'null'
        code:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    SafaribookingsOperatorCountryTours:
      properties:
        '@type':
          type: string
          default: SafaribookingsOperatorCountryTours
        country:
          type: string
        tour_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - country
    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

````