/api/amazon/categories endpoint retrieves the full product category taxonomy for any supported Amazon marketplace. Each entry in the response includes a category ID, display name, URL, and a slash-separated breadcrumb path showing where it sits in the hierarchy. Use this endpoint to build category navigation menus, populate filter dropdowns, or discover valid category IDs for use with other endpoints.
Request
GET https://api.glade.dev/api/amazon/categories
string
default:"US"
The Amazon marketplace whose category taxonomy you want to retrieve. Accepted values:
US, UK, CA, DE, FR, IT, ES, AU, IN, MX, BR, JP, PL. Defaults to US when omitted.Response
A successful response returnsdata.amazonProductCategoryTaxonomy, an array of category objects covering both top-level departments and nested subcategories.
array
Example response
Curl example
Error handling
If your request is malformed or your credentials are invalid, the API returns a non-2xx status code with a JSON error body. Always check thesuccess field before iterating over data.

