Maersk · Capability

Maersk Schedules API — Sailings

Retrieve point-to-point and commercial service schedules for Maersk ocean routes.

Maersk Schedules API — Sailings is a Naftiko capability published by Maersk, one of 8 capabilities the APIs.io network indexes for this provider.

Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Maersk, Schedules, and Ocean.

Run with Naftiko MaerskSchedulesOcean

Capability Spec

schedules-sailings.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Maersk Schedules API — Sailings
  description: >
    Retrieve point-to-point and commercial service schedules for Maersk ocean
    routes.
  tags:
    - Maersk
    - Schedules
    - Ocean
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
  - namespace: env
    keys:
      MAERSK_CONSUMER_KEY: MAERSK_CONSUMER_KEY
capability:
  consumes:
    - type: http
      namespace: schedules
      baseUri: https://api.maersk.com
      description: Point-to-point and commercial schedules.
      resources:
        - name: point-to-point
          path: /products/ocean-products/point-to-point
          operations:
            - name: getPointToPointSchedules
              method: GET
              description: Sailing options between two ports.
              inputParameters:
                - name: collectionOriginCountryCode
                  in: query
                  type: string
                  required: true
                - name: collectionOriginCityName
                  in: query
                  type: string
                  required: true
                - name: deliveryDestinationCountryCode
                  in: query
                  type: string
                  required: true
                - name: deliveryDestinationCityName
                  in: query
                  type: string
                  required: true
                - name: startDate
                  in: query
                  type: string
                  required: true
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
        - name: service-schedules
          path: /dcsa/cs/v1/service-schedules
          operations:
            - name: getServiceSchedules
              method: GET
              description: Commercial service schedules per DCSA.
              inputParameters:
                - name: carrierServiceCode
                  in: query
                  type: string
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
      authentication:
        type: apikey
        in: header
        name: Consumer-Key
        valueFrom: env.MAERSK_CONSUMER_KEY