TUI Group Check In Handler API

The CheckInHandler API from TUI Group — 2 operation(s) for checkinhandler.

Operations 2

GET /recordlocator Returns the Record Locator value for a booking
GET /checkinavailability Returns the CheckIn/Login status for a booking

Documentation

📖
Documentation
https://developer.tui/api-catalog/newskies-digital-api/api-description
📖
Documentation
https://developer.tui/api-catalog/newskies-digital-api/get-started
📖
Documentation
https://developer.tui/api-catalog/newskies-digital-api/simple-workflow
📖
Documentation
https://developer.tui/api-catalog/newskies-digital-api/advanced-workflow
📖
Documentation
https://developer.tui/api-catalog/newskies-digital-api/creditcard-payments
📖
Documentation
https://developer.tui/api-catalog/newskies-digital-api/backwards-compatibility
📖
Documentation
https://developer.tui/api-catalog/newskies-gonow-api/api-description
📖
Documentation
https://developer.tui/api-catalog/newskies-gonow-api/get-started
📖
Documentation
https://developer.tui/api-catalog/newskies-gonow-api/check-workflow
📖
Documentation
https://developer.tui/api-catalog/newskies-gonow-api/backwards-compatibility
📖
Documentation
https://developer.tui/api-catalog/newskies-payment-api/api-description
📖
Documentation
https://developer.tui/api-catalog/newskies-payment-api/booking-flow
📖
Documentation
https://developer.tui/api-catalog/nskcc-availability-search-api/description
📖
Documentation
https://developer.tui/api-catalog/nskcc-availability-search-api/api-details
📖
Documentation
https://developer.tui/api-catalog/nskcc-availability-search-api/technical-integration
📖
Documentation
https://developer.tui/api-catalog/nskcc-availability-search-api/code-examples
📖
Documentation
https://developer.tui/api-catalog/nskcc-availability-search-api/api-onepager
📖
Documentation
https://developer.tui/api-catalog/tui-newskies-pricefile-api/description
📖
Documentation
https://developer.tui/api-catalog/tui-newskies-pricefile-api/technical-integration
📖
Documentation
https://developer.tui/api-catalog/tui-newskies-pricefile-api/data-format
📖
Documentation
https://developer.tui/api-catalog/checkinhandler-service-api/api-description
📖
Documentation
https://developer.tui/api-catalog/checkinhandler-service-api/api-details
📖
Documentation
https://developer.tui/api-catalog/checkinhandler-service-api/technical-integration
📖
Documentation
https://developer.tui/api-catalog/tui-flight-ota-api/api-description
📖
Documentation
https://developer.tui/api-catalog/ota-content-api/api-description
📖
Documentation
https://developer.tui/api-catalog/ota-content-api/technical-details
📖
Documentation
https://developer.tui/api-catalog/ota-content-api/release-notes
📖
Documentation
https://developer.tui/api-catalog/walldy-api/api-description
📖
Documentation
https://developer.tui/api-catalog/walldy-api/api-details
📖
Documentation
https://developer.tui/api-catalog/walldy-api/technical-integration
📖
Documentation
https://developer.tui/api-catalog/walldy-api/api-onepager
📖
Documentation
https://developer.tui/api-catalog/walldy-api/release-notes
📖
Documentation
https://developer.tui/api-catalog/holidayofferscontroller-api/api-description
📖
Documentation
https://developer.tui/api-catalog/holidayofferscontroller-api/technical-integration
📖
Documentation
https://developer.tui/api-catalog/holidayofferscontroller-api/release-notes
📖
Documentation
https://developer.tui/api-catalog/meta-search-generic-api/api-description
📖
Documentation
https://developer.tui/api-catalog/partner-content-api/api-description
📖
Documentation
https://developer.tui/api-catalog/ship-content-api/api-description

Specifications

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/tui-group-checkinhandler-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

tui-group-checkinhandler-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Service Check In Handler API
  description: Complete API specification for CheckInHandler Service endpoints
  version: 1.0
  contact:
    name: Flight Production - Passenger Logistics
    url: https://tui.atlassian.net/wiki/spaces/NST/overview?homepageId=172195842
    email: skywalker@tui.de
servers:
- url: https://dev.api.tui/flight/newskies/checkinhandler
- url: https://test.api.tui/flight/newskies/checkinhandler
- url: https://preprod.api.tui/flight/newskies/checkinhandler
- url: https://prod.api.tui/flight/newskies/checkinhandler
tags:
- name: CheckInHandler
paths:
  /recordlocator:
    get:
      tags:
      - CheckInHandler
      summary: Returns the Record Locator value for a booking
      description: Returns the Record Locator value from the Third Party Record Locator and the passenger last name.
      parameters:
      - name: bookingId
        in: query
        required: true
        schema:
          type: string
      - name: lastName
        in: query
        required: true
        schema:
          type: string
      responses:
        '200':
          description: RecordLocator
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RecordLocatorResponse'
        '404':
          description: BookingNotFound
        '500':
          description: InternalServerError
  /checkinavailability:
    get:
      tags:
      - CheckInHandler
      summary: Returns the CheckIn/Login status for a booking
      description: Returns the CheckIn/Login status from the TPRL/PNR and the passenger last name.
      parameters:
      - name: bookingId
        in: query
        required: true
        schema:
          type: string
      - name: lastName
        in: query
        required: true
        schema:
          type: string
      responses:
        '200':
          description: CheckIn/Login status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CheckInValidation'
        '500':
          description: InternalServerError
components:
  schemas:
    CheckInStatus:
      type: object
      properties:
        productType:
          type:
          - string
          - 'null'
        deepLinkUrl:
          type:
          - string
          - 'null'
        checkInAvailable:
          type: boolean
        errorMessage:
          type:
          - string
          - 'null'
      additionalProperties: false
    LoginStatus:
      type: object
      properties:
        success:
          type: boolean
        errorMessage:
          type:
          - string
          - 'null'
      additionalProperties: false
    RecordLocatorResponse:
      type: object
      properties:
        recordLocator:
          type:
          - string
          - 'null'
      additionalProperties: false
    CheckInValidation:
      type: object
      properties:
        recordLocator:
          type:
          - string
          - 'null'
        loginStatus:
          $ref: '#/components/schemas/LoginStatus'
        checkInStatus:
          $ref: '#/components/schemas/CheckInStatus'
      additionalProperties: false
x-header: 'Complete API specification for CheckInHandler Service endpoints

  '
x-summary: 'Complete API specification for CheckInHandler Service endpoints

  '