e2open Schedules API

Ocean carrier schedule lookup

Operations 1

GET /schedules Search ocean vessel schedules #

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/e2open-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

e2open-schedules-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: INTTRA Ocean Execution API (e2open) Bookings Schedules API
  description: INTTRA (now part of e2open) provides ocean execution APIs for the world's largest multi-carrier e-commerce platform for global shipping. The RESTful API uses HTTPS with JSON for booking, ocean schedules, rates, and visibility/track and trace products. Authentication requires a bearer token obtained from the identity service before making API requests.
  version: 1.0.0
  contact:
    name: INTTRA / e2open Support
    url: https://knowledge.e2open.com/knowledgecenter/inttra-resources/
  license:
    name: e2open Terms
    url: https://www.inttra.com/legal/
servers:
- url: https://api.inttra.com/v1
  description: INTTRA Ocean Execution API Production
security:
- bearerAuth: []
tags:
- name: Schedules
  description: Ocean carrier schedule lookup
paths:
  /schedules:
    get:
      operationId: searchSchedules
      summary: Search ocean vessel schedules
      description: Returns vessel sailing schedules from origin to destination port. Supports filtering by carrier, vessel, and date range.
      tags:
      - Schedules
      parameters:
      - name: originPort
        in: query
        required: true
        description: UN/LOCODE origin port
        schema:
          type: string
      - name: destinationPort
        in: query
        required: true
        description: UN/LOCODE destination port
        schema:
          type: string
      - name: departureAfter
        in: query
        description: Search from this departure date (ISO 8601)
        schema:
          type: string
          format: date
      - name: departureBefore
        in: query
        schema:
          type: string
          format: date
      - name: carrier
        in: query
        description: Filter by carrier SCAC code
        schema:
          type: string
      - name: limit
        in: query
        schema:
          type: integer
          default: 20
      responses:
        '200':
          description: Ocean schedules
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScheduleList'
components:
  schemas:
    Vessel:
      type: object
      properties:
        vesselName:
          type: string
        imoNumber:
          type: string
          pattern: ^[0-9]{7}$
        callSign:
          type: string
    Schedule:
      type: object
      properties:
        carrier:
          type: string
        carrierName:
          type: string
        vessel:
          $ref: '#/components/schemas/Vessel'
        voyage:
          type: string
        originPort:
          type: string
        destinationPort:
          type: string
        etd:
          type: string
          format: date-time
        eta:
          type: string
          format: date-time
        transitTimeDays:
          type: integer
        cutoffDateTime:
          type: string
          format: date-time
          description: Documentation and cargo cutoff
        availableEquipment:
          type: array
          items:
            type: string
            enum:
            - 20GP
            - 40GP
            - 40HC
            - 45HC
            - 20RF
            - 40RF
    ScheduleList:
      type: object
      properties:
        total:
          type: integer
        schedules:
          type: array
          items:
            $ref: '#/components/schemas/Schedule'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Bearer token obtained from the INTTRA identity service