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

# /airbnb/listings/search

> Search Airbnb stay listings by location with optional dates, guest counts and nightly-price filters. Returns listings with id, url, listing title, card category, coordinates, overall rating and review count, guest-favorite flag, badges, displayed price (with original price when discounted) and its qualifier, capacity (bedrooms, beds, bathrooms) and photos.

**Price:** 1 credit per 10 results



## OpenAPI

````yaml /openapi/travel-hospitality.json post /api/airbnb/listings/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/airbnb/listings/search:
    post:
      tags:
        - /airbnb
      summary: /airbnb/listings/search
      description: >-
        Search Airbnb stay listings by location with optional dates, guest
        counts and nightly-price filters. Returns listings with id, url, listing
        title, card category, coordinates, overall rating and review count,
        guest-favorite flag, badges, displayed price (with original price when
        discounted) and its qualifier, capacity (bedrooms, beds, bathrooms) and
        photos.


        **Price:** 1 credit per 10 results
      operationId: __api_airbnb_listings_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AirbnbListingsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AirbnbSearchListing'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    AirbnbListingsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        place:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
        check_in:
          anyOf:
            - type: string
            - type: 'null'
        check_out:
          anyOf:
            - type: string
            - type: 'null'
        adults:
          type: integer
          maximum: 16
          minimum: 1
          default: 1
        children:
          type: integer
          maximum: 15
          minimum: 0
          default: 0
        infants:
          type: integer
          maximum: 5
          minimum: 0
          default: 0
        pets:
          type: integer
          maximum: 5
          minimum: 0
          default: 0
        min_price:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        max_price:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
      type: object
      required:
        - place
        - count
    AirbnbSearchListing:
      properties:
        '@type':
          type: string
          default: AirbnbSearchListing
        id:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        is_guest_favorite:
          anyOf:
            - type: boolean
            - type: 'null'
        badges:
          items:
            type: string
          type: array
          default: []
        price:
          anyOf:
            - type: string
            - type: 'null'
        original_price:
          anyOf:
            - type: string
            - type: 'null'
        price_qualifier:
          anyOf:
            - type: string
            - type: 'null'
        bedroom_count:
          anyOf:
            - type: integer
            - type: 'null'
        bed_count:
          anyOf:
            - type: integer
            - type: 'null'
        bathroom_count:
          anyOf:
            - type: number
            - type: 'null'
        bathroom_label:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - id
    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

````