API Sandbox
Test 3PL SHIP API endpoints in real-time with interactive request building and response inspection.
Choose how you want to test the API
Demo Mode Active
Testing with our demo API key. All requests are real but use sandbox data. No signup required.
Test or live API environment
TestLive
Test Environment
Safe to experiment. No production data will be affected.
Using simulated responses (no actual API calls)
Request Builder
Select an endpoint and customize the request
Safe testing with sandbox data
TestLive
POSThttps://app.3plship.com/v1/orders?page=1&limit=50
Demo API key is used in this mode.
Request History
Last 20 requests in this session
No requests yet. Send your first request to see history.
Response
Live API response with success/data/meta structure
Click "Send Request" to see the response
Code Snippet
Copy code in your preferred language
curl -X POST 'https://app.3plship.com/v1/orders?page=1&limit=50' \
-H 'Authorization: Bearer demo_key_***' \
-H 'Content-Type: application/json' \
\
-d '{
"order_number": "ORD-2024-001",
"customer_id": "cust_abc123",
"shipping_address_id": "addr_xyz789",
"billing_address_id": "addr_abc456",
"line_items": [
{
"product_id": "prod_123",
"sku": "SUPP-OMEGA3-120",
"quantity": 2,
"unit_price": 29.99,
"tax_amount": 2.4
}
],
"shipping_method": "standard",
"shipping_cost": 8.99,
"tax_total": 4.8,
"order_total": 73.77,
"notes": "Handle with care - temperature sensitive",
"metadata": {
"channel": "shopify",
"order_source": "online_store"
}
}'