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

# /momondo/stays/search

> Search momondo hotels for a destination city over a check-in/check-out date range, guest and room count. Returns ranked hotels with name, star rating, guest review score and label, property type, the cheapest nightly and total price, per-provider booking offers with deeplinks, neighbourhood, exact coordinates, distance to the city centre, amenities, photos, description, phone and hotel website. Optional filters narrow the results by max price, minimum star rating, minimum review score, property types, amenities and free perks. The destination is a momondo city id (resolve it via the places search city_id).

**Price:** 20 credits per 30 results

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



## OpenAPI

````yaml /openapi/travel-hospitality.json post /api/momondo/stays/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/momondo/stays/search:
    post:
      tags:
        - /momondo
      summary: /momondo/stays/search
      description: >-
        Search momondo hotels for a destination city over a check-in/check-out
        date range, guest and room count. Returns ranked hotels with name, star
        rating, guest review score and label, property type, the cheapest
        nightly and total price, per-provider booking offers with deeplinks,
        neighbourhood, exact coordinates, distance to the city centre,
        amenities, photos, description, phone and hotel website. Optional
        filters narrow the results by max price, minimum star rating, minimum
        review score, property types, amenities and free perks. The destination
        is a momondo city id (resolve it via the places search city_id).


        **Price:** 20 credits per 30 results


        **⚠️ Common errors:** 412: Destination not found or no hotels available
        for the given dates
      operationId: __api_momondo_stays_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MomondoStaysSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MomondoStay'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    MomondoStaysSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        city_id:
          type: string
          pattern: ^\d+$
        checkin_date:
          type: string
          format: date
        checkout_date:
          type: string
          format: date
        adults:
          type: integer
          maximum: 8
          minimum: 1
          default: 2
        children_ages:
          items:
            type: integer
          type: array
          default: []
        rooms:
          type: integer
          maximum: 8
          minimum: 1
          default: 1
        max_price:
          anyOf:
            - type: number
              exclusiveMinimum: 0
            - type: 'null'
        min_stars:
          anyOf:
            - type: integer
              maximum: 5
              minimum: 2
            - type: 'null'
        min_review_score:
          anyOf:
            - $ref: '#/components/schemas/MomondoReviewScore'
            - type: 'null'
        property_types:
          items:
            $ref: '#/components/schemas/MomondoPropertyType'
          type: array
          default: []
        amenities:
          items:
            $ref: '#/components/schemas/MomondoHotelAmenity'
          type: array
          default: []
        freebies:
          items:
            $ref: '#/components/schemas/MomondoFreebie'
          type: array
          default: []
        sort:
          $ref: '#/components/schemas/MomondoStaysSort'
          default: best
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - city_id
        - checkin_date
        - checkout_date
        - count
    MomondoStay:
      properties:
        '@type':
          type: string
          default: MomondoStay
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        stars:
          anyOf:
            - type: number
            - type: 'null'
        review_score:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        review_label:
          anyOf:
            - type: string
            - type: 'null'
        property_type:
          anyOf:
            - type: string
            - type: 'null'
        chain:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        price:
          anyOf:
            - type: number
            - type: 'null'
        price_total:
          anyOf:
            - type: number
            - type: 'null'
        historic_high_price:
          anyOf:
            - type: number
            - type: 'null'
        discount_percent:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        neighborhood:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        distance:
          anyOf:
            - type: string
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        website_url:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        amenities:
          items:
            type: string
          type: array
          default: []
        provider_count:
          anyOf:
            - type: integer
            - type: 'null'
        is_free_cancellation:
          anyOf:
            - type: boolean
            - type: 'null'
        offers:
          items:
            $ref: '#/components/schemas/MomondoHotelOffer'
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    MomondoReviewScore:
      type: string
      enum:
        - '6'
        - '7'
        - '8'
        - '9'
    MomondoPropertyType:
      type: string
      enum:
        - aparthotel
        - bed_and_breakfast
        - guesthouse
        - hostel
        - hotel
        - inn
        - motel
        - resort
        - apartment
        - condo
        - homestay
        - house
        - lodge
        - villa
        - campground
    MomondoHotelAmenity:
      type: string
      enum:
        - air_conditioning
        - hairdryer
        - wifi
        - non_smoking
        - elevator
        - front_desk_24h
        - fitness
        - parking
        - accessible
        - business_center
        - pet_friendly
        - restaurant
        - internet
        - kitchen
        - airport_shuttle
        - ev_charging
        - pool
        - spa
        - hot_tub
        - terrace
        - casino
        - grill
        - adults_only
        - golf
        - fireplace
        - game_room
        - beachfront
    MomondoFreebie:
      type: string
      enum:
        - free_internet
        - free_cancellation
        - free_breakfast
        - pay_later
        - free_parking
        - free_airport_shuttle
    MomondoStaysSort:
      type: string
      enum:
        - best
        - cheapest
        - review_score
        - stars
    MomondoHotelOffer:
      properties:
        '@type':
          type: string
          default: MomondoHotelOffer
        provider_code:
          anyOf:
            - type: string
            - type: 'null'
        provider_name:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        total_price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        rate_type:
          anyOf:
            - type: string
            - type: 'null'
        is_direct:
          anyOf:
            - type: boolean
            - type: 'null'
        is_free_cancellation:
          anyOf:
            - type: boolean
            - type: 'null'
        booking_url:
          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

````