Build powerful integrations with our RESTful APIs
Our RESTful API provides programmatic access to ShipFifty's fulfillment platform. Use it to manage products, inventory, warehouse orders, clients, returns, and more.
https://api.shipfifty.com/v1
Authenticate by calling the login endpoint to receive a JWT token, then include it in subsequent requests:
Authorization: Bearer YOUR_JWT_TOKEN
1000 requests per hour per account
# Step 1: Get JWT token
curl -X POST https://api.shipfifty.com/v1/auth/login \
-H "Content-Type: application/json" \
-d '{"email": "your@email.com", "password": "your_password"}'
# Step 2: Use token for API calls
curl https://api.shipfifty.com/v1/products/search \
-H "Authorization: Bearer YOUR_JWT_TOKEN"