Get categorization API
You can fetch the list of brands and categories of the item recommendations that are recommended for you by using the Get Categorization API. You can currently use theBRAND
or CATEGORY
as the categorizationType
.
Throttling
This API endpoint is throttled—if you submit too many feeds too quickly, you might hit Walmart’s rate limits and receive HTTP 429 responses. To learn more about throttling, refer to the Marketplace throttling documentation.
BRAND as a type of categorization
- Here, you can get the list of brands sorted by the number of item recommendations associated. The list is then sorted in lexicographic order by brand name.
- You can also add
filterCriteria
such assearchText
andmultiValueFilter
to get a specific set of results. - You will be able to pull a maximum of 200 records in one response and use the
nextCursor
to pull the next set of records
CATEGORY as a type of categorization
- Here, you can get the list of categories sorted by the number of item recommendations associated with each category. The list is then sorted in lexicographic order by category name.
- You can add
filterCriteria
likesearchText
andmultiValueFilter
to get a specific set of results. - You will be able to pull a maximum of 200 records in one response and use the
nextCursor
to pull the next set of records
Updated 1 day ago