Returns the details of a specified taxon.
const options = {method: 'GET'};
fetch('https://demo.spreecommerce.org/api/v2/storefront/taxons/{taxon_permalink}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Specify the taxon using the permalink or taxon ID.
Specify the related resources you would like to receive in the response body. More Information.
Specify the fields you would like returned in the response body. More information.
Was this page helpful?
const options = {method: 'GET'};
fetch('https://demo.spreecommerce.org/api/v2/storefront/taxons/{taxon_permalink}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));