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));Documentation Index
Fetch the complete documentation index at: https://spreecommerce.org/docs/llms.txt
Use this file to discover all available pages before exploring further.
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));