Account management and tag operations
ShipStation V1 API (Legacy) (1.0.0)
The ShipStation V1 API (Legacy) provides comprehensive functionality for managing orders, shipments, carriers, and more within the ShipStation platform.
New integrations should use ShipStation API V2 whenever possible. This V1 API is maintained for existing integrations.
Download OpenAPI description
Overview
Languages
Servers
Mock server
https://docs.shipstation.com/_mock/apis/shipstation-v1/openapi/
Production Server
https://ssapi.shipstation.com/
- Mock serverhttps://docs.shipstation.com/_mock/apis/shipstation-v1/openapi/customers
- Production Serverhttps://ssapi.shipstation.com/customers
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
-u <username>:<password> \
'https://docs.shipstation.com/_mock/apis/shipstation-v1/openapi/customers?stateCode=string&countryCode=string&marketplaceId=0&tagId=0&sortBy=Name&sortDir=ASC&page=1&pageSize=100'Response
application/json
{ "customers": [ { … } ], "total": 0, "page": 0, "pages": 0 }
- Mock serverhttps://docs.shipstation.com/_mock/apis/shipstation-v1/openapi/customers/{customerId}
- Production Serverhttps://ssapi.shipstation.com/customers/{customerId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
-u <username>:<password> \
https://docs.shipstation.com/_mock/apis/shipstation-v1/openapi/customers/12345678Response
application/json
{ "customerId": 12345678, "name": "Cam Newton", "company": "Test Company", "street1": "123 War Eagle Lane", "city": "Auburn", "state": "AL", "postalCode": "36830", "countryCode": "US", "phone": "555-555-5555", "email": "supermancam@example.com", "addressVerified": "Verified" }