API-based embedding
How It Works
Example (REST API)
fetch('https://toucanai.cloud/api/v1/dashboards/your-dashboard-id', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_EMBED_TOKEN'
}
})
.then(res => res.json())
.then(data => {
// Render dashboard data using your own UI
console.log(data);
});Key Features
When to Use
Limitations
Last updated
