Zamna Start With Booking Id And Surname API

The Start With Booking Id And Surname API from Zamna — 1 operation(s) for start with booking id and surname.

Operations 1

POST /start-with-booking-id-and-surname Initiate MultiPax session with booking id and surname

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/zamna-start-with-booking-id-and-surname-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

zamna-start-with-booking-id-and-surname-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Zamna Ready To Fly Session Start With Booking Id And Surname API
  version: '2.18'
servers:
- url: https://paxcheck-app-dev.staging.zamna.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Start With Booking Id And Surname
paths:
  /start-with-booking-id-and-surname:
    post:
      summary: Initiate MultiPax session with booking id and surname
      parameters:
      - name: X-Request-Id
        in: header
        description: Request id to be returned in response header (auto generated if not specified)
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/StartWithBookingIdAndSurnameRequest'
        required: true
      responses:
        '200':
          description: MultiPax session id and token to authorize further requests
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StartWithBookingIdAndSurnameResponse'
      tags:
      - Start With Booking Id And Surname
components:
  schemas:
    StartWithBookingIdAndSurnameResponseData:
      type: object
      description: Response for /start-with-booking-id-and-surname endpoint
      properties:
        session_id:
          type: string
          description: MultiPax session id
          example: aae10767-d13b-4e5c-a9fe-0ab8f13b8087
        pax_check_token:
          type: string
          description: Session token to authenticate to other API endpoints
        return_url:
          description: URL to where navigate passenger to
          type:
          - string
          - 'null'
      required:
      - session_id
      - pax_check_token
    ErrorContainer:
      type: object
      properties:
        general_error:
          anyOf:
          - $ref: '#/components/schemas/GeneralError'
          - type: 'null'
    StartWithBookingIdAndSurnameRequest:
      type: object
      description: Request to login with booking identifier and surname, relies on ReCaptcha to prevent robots from using the service
      properties:
        booking_id:
          type: string
          description: Booking id
          example: BC45AS
        surname:
          type: string
          description: Passenger surname
          example: SMITH
        recaptcha_response:
          type: string
          description: ReCaptcha response
      required:
      - booking_id
      - surname
      - recaptcha_response
    StartWithBookingIdAndSurnameResponse:
      type: object
      description: Response to login with booking identifier and surname
      properties:
        data:
          anyOf:
          - $ref: '#/components/schemas/StartWithBookingIdAndSurnameResponseData'
          - type: 'null'
        error:
          anyOf:
          - $ref: '#/components/schemas/ErrorContainer'
          - type: 'null'
    GeneralErrorCode:
      type: string
      enum:
      - NOT_FOUND
      - BAD_REQUEST
      - BOOKING_CURRENTLY_NOT_PROCESSABLE
      - BOOKING_NOT_PROCESSABLE
      - SESSION_IS_LOCKED
      - SESSION_FINALISED
    GeneralError:
      type: object
      properties:
        code:
          $ref: '#/components/schemas/GeneralErrorCode'
        message:
          type:
          - string
          - 'null'
        details:
          additionalProperties:
            type: string
          type:
          - object
          - 'null'
      required:
      - code
  securitySchemes:
    BearerAuth:
      scheme: bearer
      type: http