Skip to main content
The Shiipp REST API gives developers programmatic access to every core capability of the platform — from submitting advance shipment notifications to managing customers, packages, billing, and courier configuration. All communication happens over HTTPS, all request and response bodies use application/json, and every response follows a consistent envelope structure that makes error handling predictable across your integration.

Base URL

Your Shiipp instance runs on a dedicated subdomain or custom domain provisioned by your administrator. There is no shared public base URL.
Replace your-domain.com with the hostname provided by your Shiipp administrator. All endpoint paths in this reference are relative to that base URL.
Always use HTTPS. Plain HTTP requests will be rejected or redirected depending on your server configuration.

Authentication Methods

Shiipp supports two authentication schemes depending on the endpoint you are calling. Obtain a JWT token by calling POST /api/login.php with your credentials. Tokens are valid for 8 hours. API keys are issued per-courier and are managed in the Courier Settings section of the dashboard. See the Authentication page for the full login flow, 2FA support, and error codes.

Request Format

Every request that includes a body must set the Content-Type header to application/json and send a valid JSON payload.

Standard Response Envelope

Every API response — success or error — is wrapped in the same top-level JSON envelope. This makes it straightforward to write a single response-handling layer in your client code.
The status field will be one of "success", "fail", or "error". The message field is always a human-readable string suitable for logging. The data field contains the actual payload — its shape varies by endpoint and is documented on each endpoint’s page.

Paginated Responses

Endpoints that return lists support pagination. In addition to the standard envelope fields, paginated responses include a meta object at the top level.
Use the page and limit query parameters to navigate through result sets. The maximum limit value varies by endpoint and is noted in each endpoint’s documentation.

HTTP Status Codes

Shiipp uses standard HTTP status codes. Your client should always check the HTTP status code before parsing the response body.
On 500 errors, do not retry immediately. Log the full response body and timestamp, then contact your Shiipp administrator with that information.

API Sections

Prealerts

Submit advance shipment notifications before packages arrive at the warehouse. Supports API key auth for courier integrations.

Packages

Track inbound and outbound packages, update statuses, and attach scanned weight and dimension data.

Customers

Create and manage customer accounts, user codes, mailbox assignments, and contact details.

Manifests

Generate and retrieve outbound manifests for courier pickup, including package line items and totals.

Billing

Access invoices, apply charges, and query billing summaries for individual customers or billing periods.

Courier Settings

Configure courier profiles, rate cards, API keys, and integration preferences.