> ## Documentation Index
> Fetch the complete documentation index at: https://docs.scrapio.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Get an Airbnb listing

> Fetch structured detail for a single Airbnb listing by numeric id.



## OpenAPI

````yaml get /v1/airbnb/listing
openapi: 3.1.0
info:
  title: Scrapio
  version: 1.0.0
  description: >-
    Turn any URL into structured data. Fetch raw HTML, crawl sites, extract
    structured content, interact with dynamic pages, and search the web through
    one API.
  contact:
    name: Scrapio Support
    url: https://scrapio.dev
  license:
    name: Proprietary
servers:
  - url: https://api.scrapio.dev
    description: Production
security:
  - bearerAuth: []
tags:
  - name: System
  - name: Fetch
  - name: Crawl
  - name: Map
  - name: Interact
  - name: Search
  - name: Google
  - name: Fast Search
  - name: Jobs
  - name: YouTube
  - name: Amazon
  - name: Walmart
  - name: Booking
  - name: Agoda
  - name: Airbnb
  - name: ChatGPT
  - name: Perplexity
  - name: Gemini
  - name: Bing
  - name: Reddit
  - name: TikTok
  - name: Apple App Store
  - name: Target
  - name: Monitors
paths:
  /v1/airbnb/listing:
    get:
      tags:
        - Airbnb
      summary: Get Airbnb listing details
      description: >-
        Retrieves structured detail for a single Airbnb listing by numeric id
        (from a search result). Backed by our own maintained `airbnb` Web
        Scraping API target. Requires a Starter plan or higher.
      operationId: getAirbnbListing
      parameters:
        - name: listing_id
          in: query
          required: true
          schema:
            type: string
            pattern: ^\d+$
        - name: check_in
          in: query
          required: false
          schema:
            description: Check-in date (YYYY-MM-DD)
            type: string
            pattern: ^\d{4}-\d{2}-\d{2}$
        - name: check_out
          in: query
          required: false
          schema:
            description: Check-out date (YYYY-MM-DD)
            type: string
            pattern: ^\d{4}-\d{2}-\d{2}$
        - name: adults
          in: query
          required: false
          schema:
            description: Number of adult guests
            type: integer
            exclusiveMinimum: 0
            maximum: 9007199254740991
      responses:
        '200':
          description: Structured Airbnb listing details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AirbnbListingResponse'
        '400':
          description: Invalid listing parameters.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Missing or invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '402':
          description: Airbnb dedicated endpoints require a Starter plan or higher.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: The requested listing could not be found or parsed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '429':
          description: Daily credit cap exceeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '502':
          description: Airbnb upstream failed or returned an unparseable page.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '503':
          description: Airbnb execution backend unavailable or unconfigured.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      x-codeSamples:
        - lang: cURL
          label: cURL
          source: >-
            curl
            "https://api.scrapio.dev/v1/airbnb/listing?listing_id=1706670209492936270"
            \
              -H "Authorization: Bearer $SCRAPIO_API_KEY"
components:
  schemas:
    AirbnbListingResponse:
      type: object
      properties:
        provider:
          type: string
          enum:
            - airbnb
        page_type:
          type: string
          enum:
            - listing
        snapshot_at:
          type: string
        listing:
          type: object
          properties:
            id:
              type: string
            name:
              anyOf:
                - type: string
                - type: 'null'
            property_type:
              anyOf:
                - type: string
                - type: 'null'
            space_type:
              anyOf:
                - type: string
                - type: 'null'
            overview:
              type: object
              properties:
                title:
                  anyOf:
                    - type: string
                    - type: 'null'
                items:
                  type: array
                  items:
                    type: string
              required:
                - title
                - items
              additionalProperties: false
            person_capacity:
              anyOf:
                - type: integer
                  minimum: 0
                  maximum: 9007199254740991
                - type: 'null'
            rating:
              type: object
              properties:
                average:
                  anyOf:
                    - type: number
                    - type: 'null'
                review_count:
                  anyOf:
                    - type: integer
                      minimum: 0
                      maximum: 9007199254740991
                    - type: 'null'
                label:
                  anyOf:
                    - type: string
                    - type: 'null'
              required:
                - average
                - review_count
                - label
              additionalProperties: false
            location:
              type: object
              properties:
                city:
                  anyOf:
                    - type: string
                    - type: 'null'
                latitude:
                  anyOf:
                    - type: number
                    - type: 'null'
                longitude:
                  anyOf:
                    - type: number
                    - type: 'null'
              required:
                - city
                - latitude
                - longitude
              additionalProperties: false
            host:
              type: object
              properties:
                name:
                  anyOf:
                    - type: string
                    - type: 'null'
                is_superhost:
                  anyOf:
                    - type: boolean
                    - type: 'null'
                years_hosting:
                  anyOf:
                    - type: string
                    - type: 'null'
              required:
                - name
                - is_superhost
                - years_hosting
              additionalProperties: false
            images:
              type: array
              items:
                type: string
                format: uri
            url:
              type: string
              format: uri
          required:
            - id
            - name
            - property_type
            - space_type
            - overview
            - person_capacity
            - rating
            - location
            - host
            - images
            - url
          additionalProperties: false
      required:
        - provider
        - page_type
        - snapshot_at
        - listing
      additionalProperties: false
    ErrorResponse:
      type: object
      properties:
        request_id:
          type: string
        error:
          type: object
          properties:
            code:
              type: string
            message:
              type: string
          required:
            - code
            - message
        diagnostics:
          type: object
          properties:
            outcome:
              type: string
              enum:
                - failed
            retryable:
              type: boolean
            blocked:
              type: boolean
            timed_out:
              type: boolean
          required:
            - outcome
            - retryable
          additionalProperties: false
      required:
        - request_id
        - error
      additionalProperties: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key

````