Booking.com API

Booking.com provides APIs for hotel search, availability, rates, reservations, and property management. The Connectivity APIs enable partners to distribute and manage accommodation inventory.

OpenAPI Specification

bookingcom-booking-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Booking.com API
  description: >-
    Booking.com provides APIs for hotel search, availability, rates, reservations, and property management. The Connectivity APIs enable partners to distribute and manage accommodation inventory.
  version: '1.0'
  contact:
    name: Booking.com Developer Support
    url: https://developers.booking.com/
externalDocs:
  description: Documentation
  url: https://developers.booking.com/
servers:
  - url: https://api.booking.com
    description: Production
tags:
  - name: Travel
    description: Travel operations
security:
  - bearerAuth: []
paths:
  /status:
    get:
      operationId: getStatus
      summary: Get API status
      description: >-
        Returns the current status of the API.
      tags:
        - Travel
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                  version:
                    type: string
        '401':
          description: Unauthorized
        '429':
          description: Too many requests
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer