Skip to main content
The /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.
Use the category IDs returned by this endpoint with the /api/amazon/search and /api/amazon/category endpoints to filter results to a specific category.

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 returns data.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 the success field before iterating over data.

Example error response