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 Account API Keys

This endpoint lets you retrieve the API Keys for an account. Accounts come with one API key by default and should cover most use cases. However, any number of API keys can be created as needed.

Example Request & Response

1
2
3
GET /v1/partners/accounts/242822/api_keys HTTP/1.1
Host: api.shipengine.com
API-Key: __YOUR_API_KEY_HERE__

Example response:

1
2
3
4
5
6
7
8
9
[
{
"encrypted_api_key": "4WrQpShzaZvpRixBxwSLoYdXaGeU+LCpVsQjaKBFloU",
"created_at": "2017-07-13T16:22:46.633Z",
"description": "Partner Access Key",
"account_id": 242822,
"api_key_id": 4094
}
]