API Reference
The LoadX Partner API enables automated order submission and tracking for high-volume partners.
Authentication
Section titled “Authentication”All API requests require authentication via Bearer token:
curl -H "Authorization: Bearer YOUR_API_KEY" \ https://api.loadx.studio/v1/ordersEndpoints
Section titled “Endpoints”Submit Order
Section titled “Submit Order”POST /v1/orders
{ "design_file_url": "https://your-cdn.com/designs/j80-main.dxf", "sail_type": "mainsail", "boat_model": "J/80", "dimensions": { "luff_mm": 10200, "leech_mm": 11500, "foot_mm": 3800 }, "fiber_type": "carbon", "fiber_weight": 200, "delivery_format": "finished_panel", "quantity": 1, "shipping_address": { "company": "Your Sail Loft", "street": "123 Marina Way", "city": "Newport", "country": "US", "postal_code": "02840" }}{ "order_id": "LX-2026-00123", "status": "pending_review", "estimated_ship_date": "2026-01-20", "quote": { "unit_price_usd": 850, "quantity": 1, "shipping_usd": 120, "total_usd": 970 }, "load_path_preview_url": "https://api.loadx.studio/previews/LX-2026-00123.png"}Get Order Status
Section titled “Get Order Status”GET /v1/orders/{order_id}
{ "order_id": "LX-2026-00123", "status": "in_production", "production_stage": "lamination", "estimated_ship_date": "2026-01-20", "tracking_number": null}Status Values:
pending_review- Awaiting engineering approvalquote_sent- Quote ready for your approvalin_production- Manufacturing in progressquality_check- Post-production inspectionshipped- In transit to your facilitydelivered- Confirmed delivery
List Orders
Section titled “List Orders”GET /v1/orders
Query parameters:
status- Filter by statussince- ISO date for orders after this datelimit- Max results (default 50)
Webhooks
Section titled “Webhooks”Configure webhooks to receive real-time order status updates:
POST https://your-server.com/loadx-webhook
{ "event": "order.status_changed", "order_id": "LX-2026-00123", "old_status": "in_production", "new_status": "shipped", "tracking_number": "1Z999AA10123456784", "timestamp": "2026-01-18T14:30:00Z"}Rate Limits
Section titled “Rate Limits”| Tier | Requests/minute |
|---|---|
| Premium | 60 |
| Elite | 300 |