taxonomy {walmartAPI} | R Documentation |
The category taxonomy used by walmart.com to categorize items
Description
This function returns the top level of categories only, for further levels
run function with list_output = FALSE
for nested list.
Usage
taxonomy(key = auth_cache$KEY, list_output = FALSE)
Arguments
key |
Your API access key. |
list_output |
Indicator for list output. |
Details
taxonomy
gives returns the category taxonomy used by
walmart.com to categorize items.
An API key will be required to run this function and can be acquired by creating an account on the following website https://developer.walmartlabs.com/member.
For more information refer to the original documentation https://developer.walmartlabs.com/docs/read/Taxonomy_API.
Value
A tibble with 15 columns in base response format.
Examples
## Not run:
key <- "************************"
taxonomy(key = key)
taxonomy(key = key, list_output = TRUE)
## End(Not run)
[Package walmartAPI version 0.1.5 Index]