{
  "openapi": "3.0.1",
  "info": {
    "title": "Airbnb Occupancy & Dynamic Pricing Monitor",
    "description": "Reads public Airbnb listing/search HTML for calendar availability, blocked-date proxy occupancy, nightly prices, and cleaning fees.",
    "version": "0.1",
    "x-build-id": "12VkddZ1fdke6kJd4"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/laced_kirtan~airbnb-occupancy-pricing/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-laced_kirtan-airbnb-occupancy-pricing",
        "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/laced_kirtan~airbnb-occupancy-pricing/runs": {
      "post": {
        "operationId": "runs-sync-laced_kirtan-airbnb-occupancy-pricing",
        "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/laced_kirtan~airbnb-occupancy-pricing/run-sync": {
      "post": {
        "operationId": "run-sync-laced_kirtan-airbnb-occupancy-pricing",
        "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": {
          "location": {
            "title": "Location",
            "minLength": 2,
            "type": "string",
            "description": "Search location such as Scottsdale, Arizona.",
            "default": "Scottsdale, Arizona"
          },
          "monthsToLookAhead": {
            "title": "Months to look ahead",
            "minimum": 1,
            "maximum": 12,
            "type": "integer",
            "description": "Calendar horizon used to observe pricing changes and calculate a next-30-day blocked-date upper bound.",
            "default": 3
          },
          "includeBlockedDates": {
            "title": "Include blocked dates",
            "type": "boolean",
            "description": "Include the bounded list of unavailable dates exposed by public calendar data. These dates are not asserted to be bookings.",
            "default": true
          },
          "currency": {
            "title": "Display currency",
            "pattern": "^[A-Za-z]{3}$",
            "type": "string",
            "description": "Three-letter ISO currency requested from public search and calendar responses. Values are not converted locally.",
            "default": "USD"
          },
          "locale": {
            "title": "Locale",
            "pattern": "^[A-Za-z]{2}(-[A-Za-z]{2})?$",
            "type": "string",
            "description": "Language or language-region code used for public Airbnb responses, such as en-US or fr-FR.",
            "default": "en-US"
          },
          "listingIds": {
            "title": "Listing IDs",
            "maxItems": 500,
            "type": "array",
            "description": "Optional direct listing IDs. When provided, direct public listing pages are processed.",
            "items": {
              "type": "string"
            },
            "default": []
          },
          "geo": {
            "title": "Optional custom coordinates",
            "type": "object",
            "description": "Use latitude/longitude and radius to create a public Airbnb search URL when a location string is not precise enough.",
            "properties": {
              "latitude": {
                "title": "Latitude",
                "description": "Center latitude in decimal degrees.",
                "type": "number",
                "minimum": -90,
                "maximum": 90
              },
              "longitude": {
                "title": "Longitude",
                "description": "Center longitude in decimal degrees.",
                "type": "number",
                "minimum": -180,
                "maximum": 180
              },
              "radiusKm": {
                "title": "Radius kilometers",
                "description": "Approximate search radius around the coordinates.",
                "type": "number",
                "minimum": 1,
                "maximum": 100
              }
            },
            "default": {}
          },
          "startUrls": {
            "title": "Optional public search URLs",
            "maxItems": 20,
            "type": "array",
            "description": "Public Airbnb search or listing URLs to use instead of the generated location URL.",
            "items": {
              "type": "string"
            },
            "default": []
          },
          "maxListings": {
            "title": "Maximum listings",
            "minimum": 1,
            "maximum": 500,
            "type": "integer",
            "description": "Hard cap on listing records retained and emitted.",
            "default": 100
          },
          "maxPages": {
            "title": "Maximum search pages",
            "minimum": 1,
            "maximum": 20,
            "type": "integer",
            "description": "Hard cap on public search/listing pages fetched before listing detail processing.",
            "default": 5
          },
          "maxRetries": {
            "title": "Retries per Airbnb request",
            "minimum": 0,
            "maximum": 5,
            "type": "integer",
            "description": "Bounded retries after failed or challenged public page/calendar requests. A fresh proxy session is used for each attempt when proxying is enabled; CAPTCHAs are detected but never solved or bypassed.",
            "default": 2
          },
          "proxyConfiguration": {
            "title": "Airbnb request proxy",
            "type": "object",
            "description": "Optional Apify Proxy or custom proxy URLs for public Airbnb page and calendar requests. Residential proxy access can improve availability but adds proxy traffic cost."
          },
          "requestTimeoutSecs": {
            "title": "Request timeout seconds",
            "minimum": 5,
            "maximum": 120,
            "type": "integer",
            "description": "Timeout per public search or listing page request.",
            "default": 25
          },
          "maxResponseBytes": {
            "title": "Maximum response bytes",
            "minimum": 100000,
            "maximum": 12000000,
            "type": "integer",
            "description": "Reject oversized public pages before embedded-data parsing.",
            "default": 6000000
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}