TheDocumentation Index
Fetch the complete documentation index at: https://docs.tybritelabs.com/llms.txt
Use this file to discover all available pages before exploring further.
TaxonomyService class (accessed via client.taxonomy) allows you to browse and retrieve the hierarchical structure of your store’s product catalog. Each resource supports an image field for building visual navigation menus and category-based landing pages.
Category Management
listCategories
Retrieve all top-level product categories. This is the starting point for building navigation menus or mega-menus.
getCategory
Retrieve details for a single category, including its description and metadata.
Subcategory Management
Subcategories allow for more granular organization within a parent category (e.g., “Laptops” inside “Electronics”).listSubcategories
Retrieve a paginated list of subcategories. You can scope this to a specific parent category and include images for each.
getSubcategory
Retrieve details for a specific subcategory.
Browsing Products
Once you have a category or subcategory ID, you can use it to filter products using theProductsService.
Filter by Category
Filter by Subcategory
Combined Hierarchical Filter
Response Codes
All taxonomy endpoints areGET and accept both publishable and secret keys.
| Code | Meaning |
|---|---|
200 | Success. |
400 | Invalid request — malformed UUID, bad query parameters, or invalid fields selector. |
401 | Invalid or missing API key. |
404 | Category or subcategory not found (single-resource endpoints only). List endpoints return 200 with an empty array. |
429 | Rate limit exceeded. |
500 | Internal server error. |

