Developers
Ship programmatically.
REST API + webhooks.
Everything in the LogixVast UI is available via API. Rate shop, generate labels, track shipments, sync orders, manage returns — all programmatic.
Up in minutes.
API key authentication. JSON requests and responses. RESTful conventions throughout.
- Base URL:
https://api.logixvast.com/v1 - Auth:
Authorization: Bearer <api_key> - Rate limit: 500 req/min (Enterprise: unlimited)
- Versioning: path-based (
/v1/,/v2/)
curlGet rates for a shipment
curl -X POST https://api.logixvast.com/v1/rates \
-H "Authorization: Bearer lv_live_abc123" \
-H "Content-Type: application/json" \
-d '{
"from_zip": "10001",
"to_zip": "90210",
"weight_oz": 16,
"dimensions": { "l": 10, "w": 8, "h": 4 }
}'
// Response
{
"rates": [
{
"carrier": "fedex",
"service": "HOME_DELIVERY",
"price_cents": 842,
"transit_days": 3
},
{
"carrier": "usps",
"service": "PRIORITY_MAIL",
"price_cents": 989,
"transit_days": 2
}
]
}Core endpoints.
Rates
POST
/v1/ratesGet rate quotes from all connected carriersPOST
/v1/rates/cheapestGet only the cheapest rate across carriersLabels
POST
/v1/labelsPurchase a label at a specific rateGET
/v1/labels/:idRetrieve label details and PDF URLDELETE
/v1/labels/:idVoid a label (within carrier window)Tracking
GET
/v1/tracking/:numberGet full tracking event timelinePOST
/v1/webhooks/trackingRegister a webhook for tracking updatesOrders
GET
/v1/ordersList orders across all channelsGET
/v1/orders/:idGet order with channel metadataPATCH
/v1/orders/:idUpdate order status or notesReturns
POST
/v1/returnsCreate a return label for an orderGET
/v1/returns/:idGet return status and trackingWebhooks.
Subscribe to events and receive real-time POST requests to your endpoint.
shipment.createdLabel purchased and shipment createdshipment.deliveredCarrier confirms delivery scanshipment.exceptionPackage stalled or delivery failedorder.syncedNew order received from marketplacereturn.requestedCustomer submitted return requestreturn.receivedReturn package scanned by carrierAPI access on all paid plans.
Full documentation available after signup. Enterprise includes unlimited API calls and dedicated integration support.