Developer Resources

Build your logistics infrastructure

A modern, RESTful API designed for speed and simplicity. Integrate shipping, inventory management, and order fulfillment into your application in minutes.

Authentication

The IndeDrop API uses Bearer Token authentication. You can obtain your API key from the vendor dashboard after signing up.

Secure by Default

All requests must be made over HTTPS. Requests without authentication will fail.

Scoped Access

Your API key gives you full access to your organization's resources.

Bash
curl -X GET https://api.indedrop.com/v1/products \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"

Core Resources

Everything you need to manage your fulfillment workflow programmatically.

Product Management

Create and manage your SKU catalog. We support flattened product data for maximum flexibility.

  • Sync inventory levels
  • Update weights and dimensions
  • Manage barcode mappings
POST /api/v1/products
{
  "sku": "TSHIRT-001",
  "name": "Cotton T-Shirt",
  "weight_kg": 0.2,
  "dimensions": {
    "length": 30,
    "width": 20,
    "height": 2
  }
}

Ready to integrate?

Sign up today to get your API keys and access the complete Swagger documentation with interactive endpoints.