A DOI full metadata
API · /datacite-api
DataCite API
DataCite as an API — the global registry of DOIs (Digital Object Identifiers) for research outputs. Where Crossref registers DOIs for journal articles, DataCite registers and describes DOIs for research data, software, samples, dissertations, preprints, models, images and other outputs, from repositories such as Zenodo, Dryad and thousands of institutions. /v1/search?query=climate full-text searches the registry and can be narrowed by resource type (type=dataset, software, text, image, audiovisual, collection, model and more), returning each DOI with its title, type, creators, publisher and publication year. /v1/doi?id=10.5281/zenodo.3509134 returns a single DOI's full metadata — title, resource type, creators, publisher, publication year, description, subjects, version, license and registration date. DOIs look like 10.5281/zenodo.3509134 (Zenodo) or 10.5061/dryad.xxxx (Dryad). Ideal for research-data discovery and citation, data-repository and reference-management tools, software-citation features and reproducibility workflows. Metadata is CC0 from DataCite. This is the registry of research data and software DOIs — distinct from the journal-article DOI index (Crossref) and from preprint and open-access services.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 343 ms
- Server probes · 24h
- Subscribers
- 4,019
- active
- Total calls
- 6
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 2,350 calls / month
- 2 requests / second
- Hard cap (429 above quota, no overage)
- 2350 calls/month
- 2 req/sec
- Search & DOI metadata
- No credit card
Starter
€7.50 /month
- 49,200 calls / month
- 5 requests / second
- Hard cap (429 above quota, no overage)
- 49.2k calls/month
- 5 req/sec
- Resource-type filters
- Email support
Pro
€23.00 /month
- 213,000 calls / month
- 12 requests / second
- Hard cap (429 above quota, no overage)
- 213k calls/month
- 12 req/sec
- Data discovery & citation
- Priority support
Mega
€61.50 /month
- 776,000 calls / month
- 35 requests / second
- Hard cap (429 above quota, no overage)
- 776k calls/month
- 35 req/sec
- High-volume repositories
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
OpenCitations API
Scholarly citations as open data — powered by OpenCitations (COCI), the open citation index. Unlike a metadata lookup, OpenCitations treats every citation as a first-class object: given a DOI you can list the papers that cite it (incoming citations) and the papers it references (outgoing), each annotated with its OpenCitations Identifier (OCI), the date the citation was created, the timespan between the two works, and whether it is a journal- or author-self-citation. Plus quick citation and reference counts for any DOI. It is built for citation-network and bibliometric work — research-impact analysis, self-citation detection, citation-timespan studies and science mapping — and is distinct from scholarly-metadata services (Crossref, OpenAlex). From a single paper to a whole reference graph, ideal for bibliometrics, research-analytics and reference-management tools. Open data from OpenCitations (CC0).
api.oanor.com/opencitations-api
Crossref API
Search scholarly literature and look up rich publication metadata from Crossref, the DOI registry behind millions of journal articles, books, chapters, conference papers and datasets. Full-text search across 150+ million works with relevance or citation sorting and optional filters, retrieve any work by its DOI (plain, doi: or URL form accepted), and search journals and publishers. Every work comes back as a clean record with title, authors and ORCIDs, journal/container, publisher, publication date, volume/issue/page, ISSN/ISBN, abstract, subjects, license and citation count. Authoritative open scholarly metadata delivered through a fast, reliable API — ideal for reference managers, repositories, research analytics, discovery tools and academic apps.
api.oanor.com/crossref-api
BioStudies API
BioStudies as an API, powered by EMBL-EBI — the database that holds the descriptions of biological studies and links their data together across EBI resources, including imaging (BioImage Archive), functional genomics (ArrayExpress), proteomics, and the literature (Europe PMC). Each study has an accession, a title and abstract, the collection it belongs to and links to its underlying data and publications. /v1/search?query=covid searches the studies and returns each match's accession (e.g. S-EPMC8017430), title, author, study type, release date and link/file counts. /v1/study?id=S-EPMC8017430 returns a study's metadata — its accession, the collection it belongs to (such as EuropePMC, ArrayExpress or BioImages), title, abstract, release date, authors and the number of linked resources. Accessions look like S-EPMC8017430 or S-BSST123; get one from the search endpoint. Ideal for research-data discovery, linking literature to its underlying datasets, systematic reviews and reproducibility tooling. Data from EMBL-EBI BioStudies (public). This is a studies and datasets metadata index — distinct from the sequence (UniProt, ENA), structure (PDB, EMDB), variant (ClinVar) and ontology databases.
api.oanor.com/biostudies-api
Research Funding API
Discover the funding and projects behind research — as an API over OpenAIRE, the open research graph that links scholarly outputs to the grants and funders that paid for them. Search funded research projects (grants) by keyword and filter by funder — the European Commission, NIH, NSF, UKRI, DFG, Wellcome and many more — and get each project's title, grant code, acronym, funder, start and end dates, funded amount and summary. Search publications too, with their title, authors, year, DOI, type, publisher, open-access status and whether they were publicly funded. It is the place to find research grants and the money behind science — ideal for research-funding discovery, science-policy analysis, grant intelligence, reporting and open-science tooling. A research-funding / projects resource — distinct from DOI registries (Crossref, DataCite) and scholarly-metadata indexes (OpenAlex). Open data from OpenAIRE (CC BY).
api.oanor.com/openaire-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for DataCite API?
What's the rate limit for DataCite API?
How much does DataCite API cost?
Can I cancel my subscription anytime?
Is DataCite API GDPR-compliant?
Pick an endpoint from the list on the left to see its details and try it.
Code snippets
Sign up to get an API key, then call any path under your slug.
curl https://api.oanor.com/datacite-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/datacite-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/datacite-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/datacite-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Ratings
Sign in to rate.
No reviews yet.
Discussion
Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.
Sign in to start a thread or reply.
Sign inNew thread
·
-
Provider answer
🔒 This thread is locked — no new replies.
-
·
- No threads yet — start the discussion.
Support
Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.
Sign in to open a support ticket.
Sign inOpen new ticket
Describe what you need help with. The provider team gets an email and replies on the ticket page.
-
·
Urgent - No tickets yet for this API.