Maersk Offers API

Product offers, prices, and surcharges.

Documentation

Specifications

Schemas & Data

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/maersk-line-offers-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

maersk-line-offers-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Maersk Air Booking AirBookings Offers API
  description: 'Submit air freight booking requests via Maersk Air Cargo. Covers consolidation, charter, and forwarder bookings between supported origin and destination airports.

    '
  version: '1.0'
  contact:
    name: Maersk Developer Support
    url: https://developer.maersk.com/support
servers:
- url: https://api.maersk.com
  description: Production Gateway
security:
- ConsumerKey: []
tags:
- name: Offers
  description: Product offers, prices, and surcharges.
paths:
  /offers/v2/offers/brand/{brandScac}/departuredate/{departureDate}:
    get:
      summary: List Available Offers
      description: 'Retrieve product offers for a given origin, destination, container, and departure date. Includes pricing, schedule, demurrage and detention conditions.

        '
      operationId: listAvailableOffers
      tags:
      - Offers
      parameters:
      - name: brandScac
        in: path
        required: true
        description: Carrier SCAC code (MAEU, SEAU, MCPU, SEJJ).
        schema:
          type: string
          example: MAEU
      - name: departureDate
        in: path
        required: true
        schema:
          type: string
          format: date
      - name: collectionOriginCityName
        in: query
        required: true
        schema:
          type: string
      - name: collectionOriginCountryCode
        in: query
        required: true
        schema:
          type: string
      - name: deliveryDestinationCityName
        in: query
        required: true
        schema:
          type: string
      - name: deliveryDestinationCountryCode
        in: query
        required: true
        schema:
          type: string
      - name: containerIsoCode
        in: query
        required: true
        schema:
          type: string
          example: 22G1
      - name: serviceMode
        in: query
        schema:
          type: string
          enum:
          - Carrier-Haulage
          - Merchant-Haulage
      responses:
        '200':
          description: Offers returned.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ProductOffer'
components:
  schemas:
    ProductOffer:
      type: object
      properties:
        offerId:
          type: string
        carrierServiceCode:
          type: string
        originLocation:
          type: string
        destinationLocation:
          type: string
        departureDate:
          type: string
          format: date-time
        arrivalDate:
          type: string
          format: date-time
        transitTime:
          type: integer
        containerIsoCode:
          type: string
        totalPrice:
          $ref: '#/components/schemas/Price'
        priceBreakdown:
          type: array
          items:
            $ref: '#/components/schemas/Price'
        demurrageDetention:
          type: object
          properties:
            originFreeDays:
              type: integer
            destinationFreeDays:
              type: integer
    Price:
      type: object
      properties:
        chargeCode:
          type: string
        chargeName:
          type: string
        amount:
          type: number
        currency:
          type: string
        basis:
          type: string
          enum:
          - PerContainer
          - PerShipment
          - PerBillOfLading
  securitySchemes:
    ConsumerKey:
      type: apiKey
      in: header
      name: Consumer-Key