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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/cargosmart-vessels-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
openapi: 3.2.0
info:
title: CargoSmart Shipment Tracking Bookings Vessels API
description: The CargoSmart Shipment Tracking API provides real-time container tracking and shipment visibility across ocean carriers and ports. APIs return container movement events, vessel positions, ETA predictions, and port arrival/departure data for supply chain visibility platforms.
version: 1.0.0
contact:
name: CargoSmart
url: https://www.cargosmart.com/
servers:
- url: https://api.cargosmart.com
description: CargoSmart Production API
security:
- apiKey: []
- oauth2: []
tags:
- name: Vessels
description: Vessel position and schedule
paths:
/vessels/v1/schedules:
get:
operationId: searchVesselSchedules
summary: Search vessel schedules
description: Search ocean carrier vessel schedules by origin and destination port, carrier, or date range.
tags:
- Vessels
parameters:
- name: originPort
in: query
description: Origin port UN/LOCODE (e.g., USNYC)
schema:
type: string
pattern: ^[A-Z]{5}$
- name: destinationPort
in: query
description: Destination port UN/LOCODE
schema:
type: string
pattern: ^[A-Z]{5}$
- name: carrierId
in: query
description: Carrier SCAC code
schema:
type: string
- name: departureFrom
in: query
schema:
type: string
format: date
- name: departureTo
in: query
schema:
type: string
format: date
- name: limit
in: query
schema:
type: integer
default: 20
responses:
'200':
description: Vessel schedules
content:
application/json:
schema:
$ref: '#/components/schemas/VesselScheduleList'
/vessels/v1/{vesselIMO}/position:
get:
operationId: getVesselPosition
summary: Get vessel position
description: Get the current AIS-based position of a vessel by IMO number.
tags:
- Vessels
parameters:
- name: vesselIMO
in: path
required: true
description: IMO vessel number
schema:
type: string
pattern: ^\d{7}$
responses:
'200':
description: Vessel position
content:
application/json:
schema:
$ref: '#/components/schemas/VesselPosition'
components:
schemas:
VesselSchedule:
type: object
properties:
scheduleId:
type: string
vesselName:
type: string
vesselIMO:
type: string
voyageNumber:
type: string
carrierCode:
type: string
carrierName:
type: string
route:
type: array
items:
type: object
properties:
port:
$ref: '#/components/schemas/Port'
estimatedArrival:
type: string
format: date-time
estimatedDeparture:
type: string
format: date-time
transitDays:
type: integer
directService:
type: boolean
Port:
type: object
properties:
locode:
type: string
description: UN/LOCODE (e.g., USNYC)
portName:
type: string
countryCode:
type: string
terminalName:
type: string
VesselScheduleList:
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/VesselSchedule'
VesselPosition:
type: object
properties:
vesselIMO:
type: string
vesselName:
type: string
latitude:
type: number
minimum: -90
maximum: 90
longitude:
type: number
minimum: -180
maximum: 180
speed:
type: number
description: Speed over ground in knots
heading:
type: number
minimum: 0
maximum: 360
destination:
type: string
eta:
type: string
format: date-time
timestamp:
type: string
format: date-time
securitySchemes:
apiKey:
type: apiKey
in: header
name: X-API-Key
oauth2:
type: oauth2
flows:
clientCredentials:
tokenUrl: https://auth.cargosmart.com/oauth/token
scopes:
tracking:read: Read shipment tracking data
bookings:read: Read booking data
bookings:write: Create and manage bookings
documents:read: Read shipping documents