Heydeo API Documentation
Complete API reference, guides, and interactive playground to build amazing export and logistics applications.
Getting Started
Quick start guide and authentication setup
API Reference
Complete endpoint documentation with examples
API Playground
Test API endpoints interactively in your browser
SDKs & Libraries
Official client libraries for JavaScript and Python
Popular API Endpoints
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);