SetupOnboardingController_themes
GET
/setup/v1/themes
const url = 'https://your-store.example.com/setup/v1/themes';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://your-store.example.com/setup/v1/themes