{ "opencollection": "1.0.0", "info": { "name": "Airbnb Activities Bookings Calendar API", "version": "2025.03.31" }, "request": { "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://www.airbnb.com/oauth2/auth", "accessTokenUrl": "https://api.airbnb.com/v2/oauth2/authorizations", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Calendar", "type": "folder" }, "items": [ { "info": { "name": "Get Listing Calendar", "type": "http" }, "http": { "method": "GET", "url": "https://api.airbnb.com/v2/listings/:listing_id/calendar", "params": [ { "name": "listing_id", "value": "", "type": "path", "description": "The unique identifier of the listing." }, { "name": "start_date", "value": "", "type": "query", "description": "The start date for the calendar range in ISO 8601 format." }, { "name": "end_date", "value": "", "type": "query", "description": "The end date for the calendar range in ISO 8601 format." } ] }, "docs": "Retrieves the availability calendar for a specific listing over a date range. Returns day-by-day availability status, nightly pricing, minimum stay requirements, and any blocked dates." }, { "info": { "name": "Update Listing Calendar", "type": "http" }, "http": { "method": "PUT", "url": "https://api.airbnb.com/v2/listings/:listing_id/calendar", "params": [ { "name": "listing_id", "value": "", "type": "path", "description": "The unique identifier of the listing." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates the availability, pricing, and minimum stay settings for specific dates on a listing calendar. Use this endpoint to block or unblock dates, adjust nightly pricing, and set minimum stay requirements." } ] } ], "bundled": true }