Developer Resources

Documentation

Complete guides, API references, and tutorials to help you integrate and optimize Targo's logistics solutions.

API Access

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
Get API Key

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"
  }]
});