<!-- List CRDs for tenant "demo-project" -->
<!-- Fetch the token from a .env file -->
<script>
const response = await fetch('https://manage.diggama.com/api/crds/', {
headers: {'Accept': 'application/json', 'Authorization': 'Bearer ' + import.meta.env.DIGGAMA_TOKEN}
});
const data = await response.json();
// Contains the first CRDs page
const crds = data.data;
</script>