SEAM REST API
Integrate your Enterprise ERP or Shopify flow directly with WMS using simple REST endpoints.
Authentication
All API requests must include a Bearer authentication token in the request header. You can generate API credentials inside the SEAM Web Administration Console.
Authorization: Bearer YOUR_API_TOKEN
API Base URL
Use our secure sandbox URL for testing, and the production URL for automated operations.
Sandbox
https://api-sandbox.seamwms.com/v1Production
https://api.seamwms.com/v1Core API Endpoints
GET
/inventory
Retrieve active stock levels across all zones and bins. Filter by SKU, Batch, Expiry, or Serial Number.
POST
/shipments
Create a outbound shipment dispatch order. This will automatically allocate stock and compile picking lists.
cURL Snippet
Copy
curl -X POST "https://api.seamwms.com/v1/shipments" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"shipment_id": "SH-2026-981",
"customer": "John Doe LLC",
"items": [
{ "sku": "SKU-990-21", "qty": 45 },
{ "sku": "SKU-312-88", "qty": 12 }
]
}'