skills/literature/metadata/crossref-api/SKILL.md
Resolve DOIs and retrieve publication metadata from CrossRef registry
npx skillsauth add wentorai/research-plugins crossref-apiInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
CrossRef is the official DOI registration agency for scholarly publishing, maintaining metadata for over 150 million content items including journal articles, books, conference proceedings, preprints, and datasets. The CrossRef REST API provides free, open access to this metadata, making it the authoritative source for resolving Digital Object Identifiers (DOIs) and retrieving standardized publication records.
Publishers deposit metadata with CrossRef when they register DOIs for their content. This makes the CrossRef API a reliable source for bibliographic information, citation counts, licensing data, funder acknowledgments, and links to full-text resources. The API is used extensively in reference management, citation analysis, and research information systems.
The API is free and requires no authentication. Users who include a mailto parameter in their requests are placed in the "polite pool" which provides faster and more reliable service.
No authentication required. For best performance, include your email to access the polite pool:
https://api.crossref.org/[email protected]
Users in the polite pool receive prioritized responses and are not subject to the same rate limiting as anonymous users. CrossRef Plus subscribers get additional benefits including guaranteed uptime and higher throughput.
GET https://api.crossref.org/workscurl "https://api.crossref.org/works?query.title=attention+is+all+you+need&rows=5&[email protected]"
message.items array containing DOI, title, author, published, is-referenced-by-count, reference, license, and link fields.GET https://api.crossref.org/works/{doi}curl "https://api.crossref.org/works/10.1038/[email protected]"
GET https://api.crossref.org/memberscurl "https://api.crossref.org/members?query=springer&rows=5&[email protected]"
GET https://api.crossref.org/journalscurl "https://api.crossref.org/journals?query=nature+machine+intelligence&rows=5&[email protected]"
Anonymous users: no hard limit but throttled under load. Polite pool users (with mailto): prioritized access with no published rate cap. CrossRef Plus subscribers: guaranteed uptime with SLA. The API returns HTTP 429 when overloaded. Use exponential backoff and always include mailto for production applications. For bulk metadata retrieval, CrossRef provides database snapshots and the Public Data File.
Resolve a list of DOIs to get standardized metadata:
# Single DOI resolution with full metadata
curl "https://api.crossref.org/works/10.1145/[email protected]"
Filter by publication date and sort by citation count:
curl "https://api.crossref.org/works?filter=from-pub-date:2023,type:journal-article&query=machine+learning&sort=is-referenced-by-count&order=desc&rows=20&[email protected]"
Monitor citation counts for a specific DOI over time:
curl "https://api.crossref.org/works/10.1038/[email protected]" | jq '.message["is-referenced-by-count"]'
documentation
Write Tsinghua University theses using the ThuThesis LaTeX template
development
Templates, formatting rules, and strategies for thesis and dissertation writing
documentation
Set up LaTeX templates for PhD and Master's thesis documents
documentation
Write SJTU theses using the SJTUThesis LaTeX template with full compliance