Integrations
Use the embedded widget or API to show Dataset Index and metrics on your own platform—repositories, lab sites, or dashboards.
Embed widget
Drop a live metrics card into any page with an iframe.
Embed a small card showing Dataset Index, FAIR score, citations, and mentions for any dataset by DOI. Use an iframe and pass the doi query parameter. Replace with your dataset's DOI (e.g. 10.1234/your-dataset).
<iframe src="/embed/d-index?doi=10.13026%2Fkpb9-mt58" title="Dataset Index" width="245" height="200" frameborder="0" ></iframe>
API
Fetch metrics as JSON or use badge endpoints for READMEs and dashboards.
Returns dataset id, total citations, total mentions, latest FAIR score, and latest Dataset Index.
{
"datasetId": 19256468,
"totalCitations": 51,
"totalMentions": 0,
"fujiScore": {
"score": 73.08,
"evaluationDate": "2026-01-08T11:46:27.000Z",
"metricVersion": "0.8",
"softwareVersion": "3.5.1"
},
"latestDIndex": {
"score": 22.340541829215407,
"year": 2025
}
} SVG badge with the D-Index score for READMEs or docs. Use the DOI in the path (e.g. 10.13026/kpb9-mt58).
JSON for badge builders (e.g. Shields.io). Same path convention as the SVG badge.
{
"doi": "10.13026/kpb9-mt58",
"datasetId": 19256468,
"dIndexScore": 22.340541829215407,
"label": "Dataset Index",
"message": "22",
"color": "green",
"labelColor": "gray"
}