Hilton Developer API

Hilton provides developer APIs for hotel search, availability, reservations, and loyalty program integration. The APIs enable travel partners and corporate clients to integrate Hilton booking capabilities. Access is gated through the Hilton developer program.

OpenAPI Specification

hilton-hilton-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Hilton Developer API
  description: >-
    Hilton provides developer APIs for hotel search, availability, reservations, and loyalty program integration. The APIs enable travel partners and corporate clients to integrate Hilton booking capabilities.
  version: '1.0'
  contact:
    name: Hilton Developer Support
    url: https://developer.hilton.com/
externalDocs:
  description: Documentation
  url: https://developer.hilton.com/
servers:
  - url: https://api.hilton.com
    description: Production
tags:
  - name: Hotels
    description: Hotels operations
security:
  - bearerAuth: []
paths:
  /status:
    get:
      operationId: getStatus
      summary: Get API status
      description: >-
        Returns the current status of the API.
      tags:
        - Hotels
      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