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

> Get the day-by-day itinerary of a SafariBookings safari tour: for every day the title and full description, the main destination park with its tag, the best time to visit, high season and best weather for that park, the chance of spotting each of the tracked animals, the accommodation with its description and website, and the meals and drinks included.

**Price:** 1 credit

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



## OpenAPI

````yaml /openapi/travel-hospitality.json post /api/safaribookings/tours/days
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/days:
    post:
      tags:
        - /safaribookings
      summary: /safaribookings/tours/days
      description: >-
        Get the day-by-day itinerary of a SafariBookings safari tour: for every
        day the title and full description, the main destination park with its
        tag, the best time to visit, high season and best weather for that park,
        the chance of spotting each of the tracked animals, the accommodation
        with its description and website, and the meals and drinks included.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Tour not found (well-formed id with no
        SafariBookings listing)
      operationId: __api_safaribookings_tours_days_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SafaribookingsToursDaysPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SafaribookingsTourDay'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SafaribookingsToursDaysPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        tour:
          type: string
          minLength: 1
      type: object
      required:
        - tour
    SafaribookingsTourDay:
      properties:
        '@type':
          type: string
          default: SafaribookingsTourDay
        day_label:
          type: string
        day_title:
          anyOf:
            - type: string
            - type: 'null'
        destination:
          anyOf:
            - type: string
            - type: 'null'
        destination_tag:
          anyOf:
            - type: string
            - type: 'null'
        destination_url:
          anyOf:
            - type: string
            - type: 'null'
        best_time_to_visit:
          anyOf:
            - type: string
            - type: 'null'
        high_season:
          anyOf:
            - type: string
            - type: 'null'
        best_weather:
          anyOf:
            - type: string
            - type: 'null'
        wildlife:
          items:
            $ref: '#/components/schemas/SafaribookingsWildlifeSighting'
          type: array
          default: []
        accommodation:
          anyOf:
            - $ref: '#/components/schemas/SafaribookingsDayStay'
            - type: 'null'
        meals:
          items:
            type: string
          type: array
          default: []
        highlights:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - day_label
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    SafaribookingsWildlifeSighting:
      properties:
        '@type':
          type: string
          default: SafaribookingsWildlifeSighting
        animal:
          type: string
        frequency:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - animal
    SafaribookingsDayStay:
      properties:
        '@type':
          type: string
          default: SafaribookingsDayStay
        name:
          anyOf:
            - type: string
            - type: 'null'
        website:
          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
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````