Maersk Schedules API

Sailing schedules and vessel routings.

Operations 2

GET /products/ocean-products/point-to-point Get Point To Point Schedules #
GET /dcsa/cs/v1/service-schedules Get Commercial Service Schedules #

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-schedules-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

maersk-line-schedules-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Maersk Schedules API
  description: 'Point-to-Point and Commercial Schedules API for ocean shipping. Retrieve sailing schedules, vessel routes, and transit times between origin and destination ports. DCSA-aligned schedule structures.

    '
  version: '2.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: Schedules
  description: Sailing schedules and vessel routings.
paths:
  /products/ocean-products/point-to-point:
    get:
      summary: Get Point To Point Schedules
      description: 'Returns sailing options between an origin and destination port for a given date range, including vessel, voyage, transit time, and intermediate transshipments.

        '
      operationId: getPointToPointSchedules
      tags:
      - Schedules
      parameters:
      - name: collectionOriginCountryCode
        in: query
        required: true
        schema:
          type: string
          example: DK
      - name: collectionOriginCityName
        in: query
        required: true
        schema:
          type: string
          example: Aarhus
      - name: deliveryDestinationCountryCode
        in: query
        required: true
        schema:
          type: string
          example: US
      - name: deliveryDestinationCityName
        in: query
        required: true
        schema:
          type: string
          example: Newark
      - name: dateRange
        in: query
        description: Departure date range in ISO 8601, e.g. P4W.
        schema:
          type: string
          example: P4W
      - name: startDate
        in: query
        required: true
        schema:
          type: string
          format: date
      - name: Consumer-Key
        in: header
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Schedules returned.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SchedulePoint'
  /dcsa/cs/v1/service-schedules:
    get:
      summary: Get Commercial Service Schedules
      description: 'Retrieve commercial service schedules per DCSA Commercial Schedules interface. Returns the planned port rotations for a carrier service.

        '
      operationId: getServiceSchedules
      tags:
      - Schedules
      parameters:
      - name: carrierServiceCode
        in: query
        schema:
          type: string
      - name: UNLocationCode
        in: query
        schema:
          type: string
      - name: Consumer-Key
        in: header
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Service schedules returned.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ServiceSchedule'
components:
  schemas:
    ServiceSchedule:
      type: object
      properties:
        carrierServiceCode:
          type: string
        carrierServiceName:
          type: string
        vesselSchedules:
          type: array
          items:
            type: object
            properties:
              vesselIMONumber:
                type: string
              transportCalls:
                type: array
                items:
                  type: object
                  properties:
                    UNLocationCode:
                      type: string
                    portCallStatusCode:
                      type: string
                    plannedArrivalDate:
                      type: string
                      format: date-time
                    plannedDepartureDate:
                      type: string
                      format: date-time
    SchedulePoint:
      type: object
      properties:
        transportSchedules:
          type: array
          items:
            type: object
            properties:
              vesselName:
                type: string
              vesselIMONumber:
                type: string
              carrierServiceCode:
                type: string
              carrierVoyageNumber:
                type: string
              departureDateTime:
                type: string
                format: date-time
              arrivalDateTime:
                type: string
                format: date-time
              transitTime:
                type: integer
                description: Transit time in days.
  securitySchemes:
    ConsumerKey:
      type: apiKey
      in: header
      name: Consumer-Key