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

# /trivago/destinations/forecast

> Get a Trivago monthly hotel price forecast for a destination. Returns, per upcoming month, the affordability band and price statistics (minimum, maximum, average, median, 10th and 90th percentile) for a night's stay — the 'best time to book' price trend.

**Price:** 1 credit

**⚠️ Common errors:** 412: Destination not found or no forecast available for the given id



## OpenAPI

````yaml /openapi/travel-hospitality.json post /api/trivago/destinations/forecast
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/trivago/destinations/forecast:
    post:
      tags:
        - /trivago
      summary: /trivago/destinations/forecast
      description: >-
        Get a Trivago monthly hotel price forecast for a destination. Returns,
        per upcoming month, the affordability band and price statistics
        (minimum, maximum, average, median, 10th and 90th percentile) for a
        night's stay — the 'best time to book' price trend.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Destination not found or no forecast
        available for the given id
      operationId: __api_trivago_destinations_forecast_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TrivagoForecastPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TrivagoMonthlyForecast'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    TrivagoForecastPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        locale:
          type: string
          default: en-US
        currency:
          type: string
          default: USD
        destination:
          type: string
          minLength: 1
        months:
          type: integer
          maximum: 24
          minimum: 1
      type: object
      required:
        - destination
        - months
    TrivagoMonthlyForecast:
      properties:
        '@type':
          type: string
          default: TrivagoMonthlyForecast
        year_month:
          type: string
        affordability:
          anyOf:
            - type: string
            - type: 'null'
        minimum:
          anyOf:
            - type: number
            - type: 'null'
        maximum:
          anyOf:
            - type: number
            - type: 'null'
        average:
          anyOf:
            - type: number
            - type: 'null'
        median:
          anyOf:
            - type: number
            - type: 'null'
        tenth_percentile:
          anyOf:
            - type: number
            - type: 'null'
        ninetieth_percentile:
          anyOf:
            - type: number
            - type: 'null'
      type: object
      required:
        - year_month
    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

````