Overview
CORE provides access to millions of open-access research papers from repositories and journals worldwide. You can search, filter, and download full-text academic content programmatically using your API key. It is a powerful resource for researchers, students, and developers building academic tools.
Beginner Tip
Use the search endpoint with a simple keyword query to get started, then explore the metadata fields like authors and DOI for richer integrations. Your API key must be included in every request as a Bearer token.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from CORE",
"description": "Access the world's Open Access research papers",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
id Unique CORE identifier for the research paper. title Title of the academic paper. authors List of author objects with name and affiliation. abstract Abstract or summary text of the paper. doi Digital Object Identifier for the paper, if available. downloadUrl URL to download the full-text PDF of the paper. Implementation Example
const url = "https://core.ac.uk/services";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
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.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Materials Platform for Data Science
The Materials Platform for Data Science (MPDS) API provides access to curated experimental data about materials — things like crystal structures, physical properties, and phase diagrams.
Numbers
The Numbers API from math.tools provides facts, trivia, and mathematical data about numbers — including the number of the day, random numbers, and detailed number properties.
arcsecond.io
⭐ Beginner's Pickarcsecond.io is a free astronomy API that aggregates data from multiple space databases, including stars, planets, exoplanets, and observing sites.
arXiv
arXiv provides programmatic access to curated research-sharing platform: physics, mathematics, quantitative finance, and economics via REST API.
GBIF
⭐ Beginner's PickGBIF (Global Biodiversity Information Facility) is a free, open API providing access to hundreds of millions of species occurrence records from around the world.