Developers
Developer Portal
Build on top of eai7's logistics infrastructure with our REST API, webhooks, and pre-built SDKs. Everything you need to integrate freight, customs, and fulfillment into your applications.
Quick Start
# Install the eai7 SDK
npm install @eai7/sdk
# Initialize with your API key
import { Eai7Client } from '@eai7/sdk'
const client = new Eai7Client({ apiKey: 'your_api_key' })
# Track a shipment
const shipment = await client.shipments.get('SHP-8821')
console.log(shipment.tracking.latestEvent)Core API Endpoints
GET
/v1/shipmentsPOST
/v1/shipmentsGET
/v1/shipments/{id}/trackingPOST
/v1/customs/classifyPOST
/v1/tariffs/simulateGET
/v1/rates/oceanWebhooks
Real-time event notifications for shipment status changes, customs events, and more.
Learn more →