skills/43-wentorai-research-plugins/skills/literature/fulltext/core-api-guide/SKILL.md
Search and retrieve open access research papers via CORE aggregator
npx skillsauth add brycewang-stanford/Awesome-Agent-Skills-for-Empirical-Research core-api-guideInstall 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.
CORE (COnnecting REpositories) is the world's largest aggregator of open access research papers, providing access to over 130 million articles harvested from thousands of data providers worldwide. The CORE API enables programmatic search, retrieval, and analysis of scholarly full-text content across repositories, journals, and preprint servers.
The API is particularly valuable for researchers conducting systematic reviews, bibliometric analyses, and literature mining tasks. Unlike many scholarly APIs that only provide metadata, CORE specializes in delivering full-text content, making it essential for text mining and natural language processing workflows in academic research.
CORE's v3 API provides a RESTful interface with JSON responses, supporting complex search queries with Boolean operators, field-specific filtering, and batch operations. It is free for non-commercial academic use, though an API key is required to access the service.
CORE requires a free API key for all requests. Register at https://core.ac.uk/services/api to obtain one.
Always store your API key in an environment variable and reference it in requests:
export CORE_API_KEY=$CORE_API_KEY
Pass the key via the Authorization header:
curl -H "Authorization: Bearer $CORE_API_KEY" \
"https://api.core.ac.uk/v3/search/works?q=machine+learning"
Search across the entire CORE corpus with full-text and metadata queries.
GET https://api.core.ac.uk/v3/search/works?q={query}&limit={n}&offset={n}
Parameters:
q (required): Search query string, supports Boolean operators (AND, OR, NOT)limit: Number of results (default 10, max 100)offset: Pagination offsetentity_type: Filter by type (e.g., journal-article, preprint)Example: Search for climate change papers with full text:
curl -s -H "Authorization: Bearer $CORE_API_KEY" \
"https://api.core.ac.uk/v3/search/works?q=climate+change+adaptation&limit=5" \
| python3 -m json.tool
Python example:
import requests
import os
headers = {"Authorization": f"Bearer {os.environ['CORE_API_KEY']}"}
params = {
"q": "deep learning AND medical imaging",
"limit": 20,
"offset": 0
}
resp = requests.get("https://api.core.ac.uk/v3/search/works", headers=headers, params=params)
data = resp.json()
for result in data.get("results", []):
print(f"Title: {result.get('title')}")
print(f"DOI: {result.get('doi')}")
print(f"Year: {result.get('yearPublished')}")
print(f"Full text length: {len(result.get('fullText', ''))}")
print("---")
Retrieve a specific paper by its CORE ID or DOI.
GET https://api.core.ac.uk/v3/works/{core_id}
curl -s -H "Authorization: Bearer $CORE_API_KEY" \
"https://api.core.ac.uk/v3/works/doi:10.1234/example.doi" \
| python3 -m json.tool
Retrieve multiple works in a single request using POST with a list of IDs.
curl -s -X POST -H "Authorization: Bearer $CORE_API_KEY" \
-H "Content-Type: application/json" \
-d '[12345, 67890, 11111]' \
"https://api.core.ac.uk/v3/works"
List or search CORE's data providers (repositories, journals).
GET https://api.core.ac.uk/v3/data-providers?q={query}
Systematic Literature Review: Use Boolean queries to replicate a search strategy across the full-text corpus. Combine with date filters to identify papers within a specific time window, then export results for screening in tools like Rayyan or Covidence.
Full-Text Mining: Retrieve full-text content programmatically for NLP pipelines. Extract named entities, key phrases, or citation contexts at scale across thousands of papers.
Repository Coverage Analysis: Query data providers to understand which institutional repositories contribute to a specific field, useful for bibliometric and open-access policy research.
Trend Detection: Run time-series queries for specific terms and track publication volume over years to identify emerging research fronts.
offset and limit for large result sets; do not fetch all results in one calldevelopment
Conduct rigorous thematic analysis (TA) of qualitative data following Braun and Clarke's (2006) six-phase framework. Use whenever the user mentions 'thematic analysis', 'TA', 'Braun and Clarke', 'qualitative coding', 'identifying themes', or asks for help analysing interviews, focus groups, open-ended survey responses, or transcripts to identify patterns. Also trigger for questions about inductive vs theoretical coding, semantic vs latent themes, essentialist vs constructionist epistemology, building a thematic map, or writing up a qualitative findings section. Covers all six phases, the four upfront analytic decisions, the 15-point quality checklist, and the five common pitfalls. Produces a Word document write-up and an annotated thematic map. Does NOT cover IPA, grounded theory, discourse analysis, conversation analysis, or narrative analysis — use a different method for those.
development
Guide users through writing a systematic literature review (SLR) following the PRISMA 2020 framework. Use this skill whenever the user mentions 'systematic review', 'systematic literature review', 'SLR', 'PRISMA', 'PRISMA 2020', 'PRISMA flow diagram', 'PRISMA checklist', or asks for help writing, structuring, or auditing a literature review that follows reporting guidelines. Also trigger when the user asks about inclusion/exclusion criteria for a review, search strategies for databases like Scopus/WoS/PubMed, study selection processes, risk of bias assessment, or narrative synthesis for a review paper. This skill covers the full PRISMA 2020 checklist (27 items), produces a Word document manuscript in strict journal article format, generates an annotated PRISMA flow diagram, and enforces APA 7th Edition referencing throughout. It does NOT cover meta-analysis or statistical pooling. By Chuah Kee Man.
testing
Performs placebo-in-time sensitivity analysis with hierarchical null model and optional Bayesian assurance. Use when checking model robustness, verifying lack of pre-intervention effects, or estimating study power.
data-ai
Fit, summarize, plot, and interpret a chosen CausalPy experiment. Use after the causal method has been selected, including when configuring PyMC/sklearn models and scale-aware custom priors.