Diggama.com QuiverBlocks Beeving.com QuiverFunds

The headless everything for the web.

Build your own CMS effortlessly. Integrated analytical platform. Headless everything for the web.

Articles.astro
Diggama
<!-- 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>