Research & language / API
DataCite REST API
Search DataCite DOI metadata to discover datasets and other research outputs.
Before you use this resource
Public discovery and DOI administration have different access requirements. Check the original file rights.
- Published by
- DataCite
- Source
- Nonprofit organisation
- Collection
- Research & language
- Resource type
- API
- Coverage
- Global
- Documented formats
- JSON
- Licence / terms
- Rights need checking
- API access
- Documented API
- Record review date
- 2026-09-06
- Last resource update
- Unknown
- Technical data audit
- Not performed
- Documentation
- Source reviewed
Documentation
The introduction or documentation was reviewed. Files and APIs were not comprehensively tested.
The cited page documents this record. Check the original source for terms and versions before reuse.
Direct API queries
curl -s 'https://api.datacite.org/dois?query=Romania&page[size]=5' | jq .import urllib.request
import json
url = "https://api.datacite.org/dois?query=Romania&page[size]=5"
req = urllib.request.Request(url, headers={"User-Agent": "CunoastereDeschisa/1.7"})
with urllib.request.urlopen(req) as resp:
data = json.loads(resp.read().decode("utf-8"))
print(json.dumps(data, indent=2)[:500])library(jsonlite)
data <- fromJSON("https://api.datacite.org/dois?query=Romania&page[size]=5")
str(data)INSTALL httpfs;
LOAD httpfs;
SELECT * FROM read_json_auto('https://api.datacite.org/dois?query=Romania&page[size]=5')
LIMIT 10;Executable query snippets for command line, data pipelines, or DuckDB.
Continue your research
Editorial suggestions for discovery. These links do not establish technical integration or licence compatibility.