Crossref Metadata Search API
Overview
Crossref Metadata Search provides free REST access to bibliographic metadata for over 140 million scholarly articles, books, and conference papers indexed by DOI. Use it to look up citation data, author info, and publication details.
Beginner Tip
No API key is required, but adding your email as a query param ([email protected]) puts you in a higher-rate polite pool with faster responses. Use https://api.crossref.org as the base URL, not the GitHub docs link.
Measurement Record
What actually happened when we called this API from our own infrastructure. Every value below was recorded by the request, not copied from the provider's documentation.
- Request
- GET https://api.crossref.org/works?query=machine+learning&rows=5&[email protected]
- Result
- HTTP 200 · application/json · 13,399 bytes · compressed
- Response time
- 284 ms (median of 3) · fastest 278 ms
- Transport
- TLSv1.3 · TLS_AES_128_GCM_SHA256 · certificate issued by Amazon
- Browser CORS
- Allowed — Access-Control-Allow-Origin: *
- Rate limit
- 3 per window
- Served by
- Jetty(9.4.40.v20210413)
- Recorded
- 2026-08-10
Fields Returned
Top-level fields present in the response we captured, with the type and value we actually received.
| Field | Type | Value received |
|---|---|---|
| status | string | ok |
| message-type | string | work-list |
| message-version | string | 1.0.0 |
| message | object | {5 fields} |
Captured Response
Captured from a real request to https://api.crossref.org/works?query=machine+learning&rows=5&[email protected] on 2026-08-10. Long arrays and nested objects are truncated to keep the shape readable.
{
"status": "ok",
"message-type": "work-list",
"message-version": "1.0.0",
"message": {
"facets": {},
"total-results": 2964471,
"items": [
{
"…": "(29 more fields)"
}
],
"items-per-page": 5,
"query": {
"start-index": 0,
"search-terms": "machine learning"
}
}
} Field Reference
status Always ok on success; indicates the API processed the request without errors Implementation Example
Calls a real endpoint of this API. Replace any placeholder credentials with your own key.
const url = "https://api.crossref.org/works?query=machine+learning&rows=5&[email protected]"; const response = await fetch(url); if (!response.ok) throw new Error(`Request failed: ${response.status}`); const data = await response.json(); console.log(data);
What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
How This API Fails
We deliberately sent this API a broken request and recorded exactly what came back on 2026-08-10. Knowing the shape of an error before you hit it makes error handling much easier to write.
{
"status": "failed",
"message-type": "validation-failure",
"message": [
{
"type": "parameter-not-allowed",
"value": "rows",
"message": "This route does not support rows"
},
{
"type": "parameter-not-allowed",
"value": "query",
"message": "This route does not support query"
}
]
} Common Errors & Troubleshooting
Generated guidance based on this API's documentation, not observed by us. Treat it as a starting point and check against the provider's own error reference.
Measured Score Breakdown
Live HTTP request to the API endpoint
Fully tested on Aug 10, 2026
Technical Specifications
Alternatives to Crossref Metadata Search
Technical alternatives for different use cases.
Academic publication metadata with DOI resolution
Consumer book search and reviews
Academic papers, journals, and citation data
Similar APIs
View All →Bhagavad Gita telugu
⭐ Beginner's PickBhagavad Gita Telugu API delivers all Gita verses in Telugu and Odia languages with no authentication required.
Bible-api
⭐ Beginner's PickBible-api.com is a free, no-auth REST API that returns Bible verses and passages in multiple translations using a simple URL pattern.
British National Bibliography
The British National Bibliography API exposes Linked Data about books published in the UK and Ireland, including titles, authors, ISBNs, and subject classifications.
Gutendex
⭐ Beginner's PickGutendex exposes the full Project Gutenberg catalogue—over 70,000 free ebooks—as a clean JSON API.
Thirukkural
⭐ Beginner's PickThirukkural API delivers all 1,330 couplets of the ancient Tamil classic Thirukkural with explanations in both Tamil and English.