What is ShipStation?
ShipStation is a web-based shipping software designed to help e-commerce businesses manage and automate order fulfillment. It provides tools for batch shipping, real-time tracking, and integrations with major carriers like FedEx, UPS, and USPS. With ShipStation, businesses can streamline their shipping process, reduce manual work, and improve overall efficiency.How to use Parabola’s ShipStation integration
Parabola’s ShipStation integration allows businesses to automate shipping workflows and optimize order management.- Import and process ShipStation order and tracking data automatically
- Update shipping statuses and generate reports without manual input
- Sync ShipStation data with other business tools for better logistics management
Pull from ShipStation
The Pull from ShipStation step allows you to pull in orders, shipments, and fulfillments from your ShipsStation account.Connect your ShipStation account
After clickingAuthorize, you’ll need to get your API Key and Secret and add them, which will enable this flow to pull from your ShipStation account. You can find your API Key and Secret here: https://ship11.shipstation.com/settings/api.


Default settings
By default, thstep will pull in Orders that were created within the last week. The orders pull defaults to also pulling in the line items for each order. This means that each row represents an item in an order. You can also pull in Shipments and Fulfillments. Across Orders, Shipments, and Fulfillments, you can modify the time frame, default or all columns, and you can filter based on things like status and carrier.Custom settings
Orders
When pulling in shipments, you can select to pull in the default column set or all columns. By default, the Orders pull includes line items. You can change this by updating the settings to show orders without line items Orders can be filtered in this step to only include those with order status (i.e. Awaiting Shipment). Orders can also be filtered down by the date they were created.Shipments

Fulfillments
When pulling in fulfillments, you can select to pull in the default column set or all columns. Fulfillments can also be filtered down by the date they were created.Helpful tips
- This step is available starting at our Plus plan.
Pull carrier rates from ShipStation
The ShipStation API is used for managing and automating shipping tasks, integrating with e-commerce platforms, and streamlining order fulfillment and shipment processes. ShipStation is a beta integration which requires a slightly more involved setup process than our native integrations. Following the guidance in this document should help even those without technical experience pull data from ShipStation. If you run into any questions, shoot our team an email at support@parabola.io.Use Cases
| Use Case | Description |
|---|---|
| Manage Order and Shipment data | Sync orders from your store to manage the fulfillment and shipment details. |
| Calculate Carrier Shipping Rates for Orders | Calculate shipping rates for different carriers and services. |
| Generate Shipping Labels | Generate shipping labels for various carriers. |
🤝 ShipStation | Integration configuration
Instructions
Navigate to your ShipStation settings in your account.
🔐 Parabola | Authentication
Click into the Request Settings to configure your request using the format below:
Request Headers
| Key | Value |
|---|---|
Authorization | Basic API Key:API Secret> |
Click into the Enrich with API: ShipStation Rates step and apply the same authentication settings used in steps 1-4.
Example Screenshot

🌐 ShipStation | Sample API Requests
Calculate shipping rates by ShipStation carriers
Get started with this template.Load sample orders
Add a Use Sample data step to your canvas. You also can import a dataset with tracking numbers into your flow (Pull from Excel File, Pull from Google Drive, Pull from API, etc.)
List all Shipstation carriers
Click into the Request Settings and configure a request to list all carriers in your ShipStation account:API Endpoint URL
Request Headers
Click Refresh data to display the results.
| Field | Value |
|---|---|
| Method | GET |
| API Endpoint URL | https://ssapi.shipstation.com/carriers |
| Key | Value |
|---|---|
Authorization | Basic API Key:API Secret> |
Click Refresh data once more to expand the order data into a table.
Connect this step to Edit columns step.
Example Screenshot

Map ShipStation carriers to sample orders
Use a Combine tables step and connect these steps:
- Input 1: Add text column (Load sample data)
- Input 2: Add text column (Import ShipStation carriers)
Merge product weight and dimensions
Copy and paste the Products - Weight and dimensions.csv file snippet into your flow:
parabola:cb:86331de2-e00b-4634-b629-d37098bbbdfeUse another Combine tables step and connect these steps:
- Input 1: Combine tables
- Input 2: Pull from CSV file
Click into the step to configure the settings.
- Input 1: Combine tables
- Input 2: Pull from CSV file
- Where the
Product TitleandProductcolumns match
Get carrier shipping rates for sample orders
Click into the Request Settings to configure a request to get shipping rates for the specified shipping details:API Endpoint URL
Request Body
Request Headers


| Field | Value |
|---|---|
| Method | POST |
| API Endpoint URL | https://ssapi.shipstation.com/shipments/getrates |
| Field | Value |
|---|---|
| Format | JSON |
| Body | { "carrierCode": "{Carrier Code}", "serviceCode": null, "packageCode": null, "fromPostalCode": "60561", "toState": "{State}", "toCountry": "US", "toPostalCode": "{Zip}", "toCity": "{City}", "weight": { "value": {Weight (Value)}, "units": "{Weight (UOM)}" }, "dimensions": { "units": "{Dimensions (Units)}", "length": {Dimensions (Length)}, "width": {Dimensions (Width)}, "height": {Dimensions (Height)} }, "confirmation": "delivery", "residential": true } |
| Key | Value |
|---|---|
Authorization | Basic API Key:API Secret> |
Content-Type | application/json |
Example Screenshots

Template Screenshot

📣 Callouts
Note:The weight of the order must be provided in the API request. The dimensions are optional. Consider using an Add math column and Sum by group steps to calculate weight and dimension values by order and quantity.
