Parcel Tracking API
Create, update, and track parcels programmatically across the full custody lifecycle. Real-time status webhooks notify your systems the moment a parcel changes hands.
Integrate parcel custody, vessel tracking, and compliance data into your existing systems
A RESTful API with consistent JSON responses, cursor pagination, and per-endpoint rate limits. Built for the systems that run alongside your port operations.
Create, update, and track parcels programmatically across the full custody lifecycle. Real-time status webhooks notify your systems the moment a parcel changes hands.
Verify Goods Delivery Notes via QR code or API. A public endpoint — no authentication required — lets any recipient confirm document authenticity instantly.
Query your vessel fleet, port calls, and associated cargo manifests. Pull structured data into your ERP, TOS, or reporting systems with cursor-paginated list endpoints.
Real-time event notifications for parcel state changes, captain confirmations, and customs manifest updates. HMAC-SHA256 signed payloads for tamper-proof delivery.
Authenticate with a Bearer token, call any endpoint, and parse a consistent JSON envelope. Here is a parcel list request in curl and JavaScript.
curl -X GET "https://app.seapillar.com/api/v2/parcels?direction=INBOUND&limit=20" \
-H "Authorization: Bearer sk_live_your_api_key_here" \
-H "Content-Type: application/json"const response = await fetch(
"https://app.seapillar.com/api/v2/parcels?direction=INBOUND&limit=20",
{
headers: {
Authorization: "Bearer sk_live_your_api_key_here",
"Content-Type": "application/json",
},
}
);
const { success, data, meta } = await response.json();
// data: Parcel[], meta: { cursor, hasMore }Full endpoint reference and request/response schemas available on request. Contact us for API access.
SeaPillar connects to the systems that already run your port operations. Use the API and webhooks to build bidirectional data flows with any platform.
Sync parcel movements with your TOS in real time
Share vessel and cargo data with port authorities
Push custody records into SAP, Oracle, or Dynamics
Automate bonded cargo declarations and manifest submissions
SeaPillar is an Agent-Ready platform. We expose machine-readable manifests to ensure AI agents and enterprise aggregators can connect to our operational data with zero friction.
Our core operational API is documented using the OpenAPI 3.0.3 specification. This allows for automated client generation and seamless integration with TOS and ERP providers.
View OpenAPI JSONWe provide a standard AI manifest for autonomous agents. This allows custom GPTs and Copilot extensions to discover and understand SeaPillar's parcel custody logic automatically.
View AI ManifestGet API access for your organization. Our team will walk you through authentication, rate limits, and the best integration pattern for your stack.