Developer Resources
Documentation
Complete guides, API references, and tutorials to help you integrate and optimize Targo's logistics solutions.
⌘K
Browse by Category
Documentation Sections
Getting Started
12 articles
API AccessGet API Key
Developer API
Integrate Targo's logistics capabilities directly into your systems. Our RESTful API provides access to shipping, tracking, rate calculation, and more.
RESTful API with JSON responses
Sandbox environment for testing
SDKs for major programming languages
24/7 technical support
Quick Example
// Create a shipment
const shipment = await targo.shipments.create({
origin: {
address: "123 Main St",
city: "New York",
country: "US"
},
destination: {
address: "456 Oak Ave",
city: "Los Angeles",
country: "US"
},
packages: [{
weight: 5,
dimensions: "10x8x4"
}]
});