Site Logo

🎉 ShipEngine is becoming ShipStation API 🎉

Over the next few months you'll notice the ShipEngine website, documentation portal, and dashboard being rebranded as ShipStation API. For our ShipEngine customers, you don't need to take any action or change any of your integrations in any way. All endpoints will remain the same and continue to function as they always have.

To learn more about what's coming, review our New ShipStation API page.

List Accounts

This endpoint returns a list of all the ShipEngine accounts that you've created. All accounts are returned by default, but you can optionally filter by active or inactive status.

Query ParameterTypeDescription
activebooloptional
Return only accounts in the specified active state. Defaults to null.
pageintegerReturn a specific "page" of results. Defaults to the first page. If set to a number that's greater than the number of pages of results, an empty page will be returned.
ex. 100
page_sizeintegerThe number of labels to return per response. Defaults to 25, maximum is 500.
ex. 100

Example Request & Response

GET /v1/partners/accounts

1
2
3
GET /v1/partners/accounts?active=true HTTP/1.1
Host: api.shipengine.com
API-Key: __YOUR_API_KEY_HERE__

Response

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"accounts": [
{
"account_id": 123456,
"external_account_id": "819748723192",
"created_at": "2022-12-04T23:06:39.197Z",
"modified_at": "2022-12-04T23:06:39.197Z",
"active": true,
"email": "[email protected]",
"company_name": "Acme Corp.",
"first_name": "John",
"last_name": "Doe",
"origin_country_code": "US"
}
]
}