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 All Tags

Once you've created some tags you can use this call to list them, which can be useful if you want to, for example, have a user choose from a list of available tags to apply to a shipment.

The response will be an array of the tag names available to your account.

Example Request & Response

GET /v1/tags/

1
2
3
GET /v1/tags HTTP/1.1
Host: api.shipengine.com
API-Key: __YOUR_API_KEY_HERE__

Response

1
2
3
4
5
6
7
8
9
10
{
"tags": [
{
"name": "east_warehouse"
},
{
"name": "west_warehouse"
}
]
}