{
  "openapi": "3.0.1",
  "info": {
    "title": "Airbnb Rooms URLs Scraper — Full Listing Details",
    "description": "Paste Airbnb listing URLs or IDs and get one flat, analysis-ready row per listing: nightly and total price, 40+ fields, amenities, host profile, GPS, photos, guest reviews, a per-day availability calendar and occupancy & revenue estimates. 14 languages, 20 currencies. Pure HTTP, no browser.",
    "version": "0.0",
    "x-build-id": "qtjCf8Cc3Ly9x65aN"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/memo23~airbnb-rooms-urls-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-memo23-airbnb-rooms-urls-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/memo23~airbnb-rooms-urls-scraper/runs": {
      "post": {
        "operationId": "runs-sync-memo23-airbnb-rooms-urls-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/memo23~airbnb-rooms-urls-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-memo23-airbnb-rooms-urls-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "properties": {
          "startUrls": {
            "title": "Airbnb listing URLs",
            "minItems": 1,
            "type": "array",
            "description": "Airbnb room/listing URLs to scrape, one per line — e.g. `https://www.airbnb.com/rooms/28198214`.\n\nAny Airbnb domain works (`airbnb.com`, `airbnb.co.uk`, `airbnb.ba`, …), and tracking query strings are fine — paste the URL exactly as you copied it.\n\nA bare listing ID (`28198214`) is accepted too.\n\n**Searching by city instead?** This actor is URL-in only. Use [Airbnb Scraper](https://apify.com/memo23/airbnb-scraper) to search by location, price and dates.",
            "items": {
              "type": "string"
            }
          },
          "checkIn": {
            "title": "Check-in Date (Optional)",
            "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
            "type": "string",
            "description": "Check-in date (YYYY-MM-DD). Prices and availability are returned for this stay. Applies to every listing URL that doesn't carry its own dates in its query string. Example: `2026-11-14`."
          },
          "checkOut": {
            "title": "Check-out Date (Optional)",
            "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
            "type": "string",
            "description": "Check-out date (YYYY-MM-DD). Must be after the check-in date. Applies to every listing URL that doesn't carry its own dates. Example: `2026-11-18`."
          },
          "adults": {
            "title": "Number of Adults (Optional)",
            "minimum": 1,
            "maximum": 16,
            "type": "integer",
            "description": "Number of adults the price should be quoted for. Applies to every listing URL that doesn't specify its own. Default 2.",
            "default": 2
          },
          "children": {
            "title": "Number of Children (Optional)",
            "minimum": 0,
            "maximum": 15,
            "type": "integer",
            "description": "Number of children (ages 2-12) to include in the price quote. Optional; leave empty for none."
          },
          "infants": {
            "title": "Number of Infants (Optional)",
            "minimum": 0,
            "maximum": 5,
            "type": "integer",
            "description": "Number of infants (under 2) to include in the price quote. Optional; leave empty for none."
          },
          "pets": {
            "title": "Number of Pets (Optional)",
            "minimum": 0,
            "maximum": 5,
            "type": "integer",
            "description": "Number of pets to include in the price quote. Affects pet fees on listings that charge them. Optional; leave empty for none."
          },
          "locale": {
            "title": "Language",
            "enum": [
              "en-US",
              "en-GB",
              "de-DE",
              "fr-FR",
              "es-ES",
              "it-IT",
              "pt-BR",
              "ja-JP",
              "ko-KR",
              "zh-CN",
              "zh-TW",
              "nl-NL",
              "pl-PL",
              "ru-RU"
            ],
            "type": "string",
            "description": "Language for listing descriptions and labels.",
            "default": "en-US"
          },
          "currency": {
            "title": "Currency",
            "enum": [
              "USD",
              "EUR",
              "GBP",
              "CAD",
              "AUD",
              "JPY",
              "CNY",
              "KRW",
              "BRL",
              "INR",
              "MXN",
              "CHF",
              "SEK",
              "NOK",
              "DKK",
              "PLN",
              "CZK",
              "HUF",
              "RUB",
              "TRY"
            ],
            "type": "string",
            "description": "Currency for prices.",
            "default": "USD"
          },
          "includeReviews": {
            "title": "Include reviews",
            "type": "boolean",
            "description": "Fetch guest reviews for each listing, with ratings, dates, reviewer names and host replies.",
            "default": false
          },
          "maxReviewsPerListing": {
            "title": "Max reviews per listing",
            "minimum": 0,
            "type": "integer",
            "description": "Cap how many reviews are fetched per listing when Include reviews is on. Reviews page 20 at a time, so a review-heavy listing can take minutes on its own — this cap is what keeps a large run inside its timeout. Set 0 for every review (slow, and can time out on big runs).",
            "default": 100
          },
          "calendarMonths": {
            "title": "Per-day availability calendar (months)",
            "minimum": 0,
            "maximum": 12,
            "type": "integer",
            "description": "Emit the full per-day availability calendar for each listing, 0–12 months ahead (0 = off). Each day includes date, availability, check-in/check-out eligibility, min/max nights, and nightly price. Adds one request per listing (shared with the occupancy estimate if that's also on).",
            "default": 0
          },
          "includeRevenueEstimate": {
            "title": "Include occupancy & revenue estimate",
            "type": "boolean",
            "description": "If checked, fetches each listing's 12-month availability calendar and adds occupancy rates (30/90/365 days), booked vs available nights, an estimated revenue (booked nights × nightly price), and average minimum-stay. Adds one extra request per listing, so runs are slower.",
            "default": false
          },
          "enrichEmails": {
            "title": "Enrich emails (host/management contact discovery)",
            "type": "boolean",
            "description": "If checked, the actor tries to discover a contact email for each listing's host/management company: it resolves the host name to a company website and harvests contact emails from it. Works best for professionally managed listings (villa companies, property managers, agencies) — individual private hosts usually have no findable business email and return empty. Adds a few requests per listing, so runs are slower.",
            "default": false
          },
          "qualifyByPayment": {
            "title": "💳 Qualify by payment (flag businesses that take money online)",
            "type": "boolean",
            "description": "Requires \"Enrich with contact emails\". Scans each business's website — reusing the pages already fetched for email discovery, so no extra cost or time — for payment processors and e-commerce platforms (Stripe, Shopify, PayPal, Paddle, Lemon Squeezy, WooCommerce, Square, Chargebee and more). Adds takesPayments (is this a real paying business?), paymentProcessors (which stack), stripeLiveKey (the public key if exposed) and paymentConfidence. Turn raw contacts into monetization-qualified leads. No extra charge — included with each enriched company.",
            "default": false
          },
          "maxItems": {
            "title": "Maximum number of items OR limit the results per crawl",
            "type": "integer",
            "description": "Hard cap on how many listing rows are produced. The run stops once it is reached, so it is also a cost cap. Default 10000; set it to the number of URLs you supplied if you want an exact ceiling.",
            "default": 10000
          },
          "maxConcurrency": {
            "title": "Max Concurrency",
            "type": "integer",
            "description": "How many listings are fetched at the same time. Default 10. Lower it if you see blocks; raise it for large URL batches.",
            "default": 10
          },
          "minConcurrency": {
            "title": "Min Concurrency",
            "type": "integer",
            "description": "Lower bound on parallel fetches. Default 1. Leave as is unless you are tuning throughput.",
            "default": 1
          },
          "maxRequestRetries": {
            "title": "Max Request Retries",
            "type": "integer",
            "description": "How many times a failed request is retried before that listing is given up on. Default 3.",
            "default": 3
          },
          "proxy": {
            "title": "Proxy configuration (optional override)",
            "type": "object",
            "description": "Leave empty — the actor already routes all traffic through its own built-in residential proxy at no extra cost to you. Only set this if you want to use your own proxies."
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}