Heydeo API Documentation

Complete API reference, guides, and interactive playground to build amazing export and logistics applications.

Quick Example

// Install the SDK
npm install @heydeo/sdk

// Initialize the client
import Heydeo from '@heydeo/sdk';

const client = new Heydeo({
  apiKey: 'sk_live_your_api_key'
});

// Create a shipment
const shipment = await client.shipments.create({
  type: 'EXPORT',
  origin: { country: 'NG', port: 'Lagos Port' },
  destination: { country: 'US', port: 'Los Angeles' },
  products: [{
    description: 'Cotton T-Shirts',
    hsCode: '6109.10.00',
    quantity: 1000,
    unitPrice: 5.50
  }]
});

console.log('Shipment created:', shipment.id);