Integrations

Use the embedded widget or API to show Dataset Index and metrics on your own platform-repositories, lab sites, or dashboards.
Try with your DOI

Embed widget

Drop a live metrics card into any page with an iframe.

How it works

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).

Snippet
<iframe
  src="/embed/d-index?doi=10.13026%2Fkpb9-mt58"
  title="Dataset Index"
  width="320"
  height="260"
  frameborder="0"
></iframe>
Live preview

API

Fetch metrics as JSON or use badge endpoints for READMEs and dashboards.

Dataset by DOIJSON

Returns dataset id, total citations, total mentions, latest FAIR score, and latest Dataset Index.

Request
GET /api/v1/datasets/by-doi?doi=10.13026%2Fkpb9-mt58
Response
{
  "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
  }
}
BadgeSVG

SVG badge with the D-Index score for READMEs or docs. Use the DOI in the path (e.g. 10.13026/kpb9-mt58).

Request
GET /api/v1/shields/badge/d-index/10.13026/kpb9-mt58.svg
Preview
Dataset Index badge
Shields-style dataJSON

JSON for badge builders (e.g. Shields.io). Same path convention as the SVG badge.

Request
GET /api/v1/shields/data/d-index/10.13026/kpb9-mt58
Response
{
  "doi": "10.13026/kpb9-mt58",
  "datasetId": 19256468,
  "dIndexScore": 22.340541829215407,
  "label": "Dataset Index",
  "message": "22",
  "color": "green",
  "labelColor": "gray"
}

Custom widgets & support

Need custom styled widgets, white-label embeds, or additional API support? Reach out and we'll help you integrate dataset index on your platform.

Contact / GitHub