skills/43-wentorai-research-plugins/skills/research/funding/zenodo-api/SKILL.md
Open research repository for all disciplines
npx skillsauth add brycewang-stanford/Awesome-Agent-Skills-for-Empirical-Research zenodo-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.
Zenodo is an open-access digital repository developed by CERN and funded by the European Commission. It enables researchers to deposit datasets, software, publications, reports, and any other research-related digital artifacts. Zenodo assigns each upload a DOI, ensuring long-term citability and discoverability of research outputs across all academic disciplines.
The Zenodo API provides programmatic access to the full repository, including the ability to search records, retrieve metadata, create depositions, upload files, and manage communities. It follows FAIR data principles (Findable, Accessible, Interoperable, Reusable) and integrates with GitHub for automatic software archiving.
Researchers, data librarians, and research infrastructure teams use the Zenodo API to automate data publishing workflows, build data discovery tools, integrate archiving into CI/CD pipelines, and harvest metadata for institutional repositories. Zenodo supports versioning, access controls, and rich metadata schemas including DataCite Metadata Schema.
Authentication is required for most write operations and for accessing restricted records. Zenodo uses personal access tokens.
deposit:write, deposit:actions)access_token query parameter or Authorization header# Query parameter method
curl "https://zenodo.org/api/records?access_token=YOUR_TOKEN"
# Header method
curl -H "Authorization: Bearer YOUR_TOKEN" "https://zenodo.org/api/records"
Read-only access to public records does not require authentication, but authenticated requests have higher rate limits.
Search the Zenodo repository for published records including datasets, software, publications, and other artifacts.
GET https://zenodo.org/api/records| Parameter | Type | Required | Description |
|-------------|--------|----------|------------------------------------------------------|
| q | string | No | Search query (Elasticsearch syntax) |
| type | string | No | Record type: dataset, software, publication |
| communities | string | No | Filter by community identifier |
| sort | string | No | Sort order: bestmatch, mostrecent |
| size | int | No | Number of results per page (default 10, max 9999) |
| page | int | No | Page number (default 1) |
curl "https://zenodo.org/api/records?q=climate+change&type=dataset&sort=mostrecent&size=5"
hits object containing total count and array of record objects with id, doi, metadata (title, creators, description, keywords, publication_date), files (download links), and links.Create new depositions to upload research data and software to Zenodo.
GET https://zenodo.org/api/deposit/depositions| Parameter | Type | Required | Description |
|--------------|--------|----------|-------------------------------------------------|
| access_token | string | Yes | Personal access token |
| q | string | No | Search within your depositions |
| sort | string | No | Sort order: bestmatch, mostrecent |
| size | int | No | Results per page |
# List your depositions
curl "https://zenodo.org/api/deposit/depositions?access_token=YOUR_TOKEN"
# Create a new deposition
curl -X POST "https://zenodo.org/api/deposit/depositions?access_token=YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"metadata": {"title": "My Dataset", "upload_type": "dataset", "description": "Sample dataset", "creators": [{"name": "Doe, Jane"}]}}'
id, metadata, state, submitted, links (including bucket URL for file uploads), and files.Rate limits vary based on authentication status. Authenticated requests receive higher limits than anonymous requests. Zenodo does not publicly document exact rate limit numbers, but typical guidance is to keep requests under 60 per minute for anonymous access and 100 per minute for authenticated access. The API returns standard HTTP 429 responses when limits are exceeded, with a Retry-After header indicating when to retry.
Find openly available datasets in a specific research domain:
import requests
params = {
"q": "machine learning genomics",
"type": "dataset",
"sort": "mostrecent",
"size": 20
}
resp = requests.get("https://zenodo.org/api/records", params=params)
data = resp.json()
for hit in data["hits"]["hits"]:
meta = hit["metadata"]
print(f"{meta['title']} | DOI: {hit['doi']} | Date: {meta['publication_date']}")
Zenodo integrates with GitHub to automatically archive releases. You can also deposit programmatically:
import requests
TOKEN = os.environ["ZENODO_API_TOKEN"]
headers = {"Authorization": f"Bearer {TOKEN}", "Content-Type": "application/json"}
# Step 1: Create empty deposition
dep = requests.post("https://zenodo.org/api/deposit/depositions",
headers=headers, json={}).json()
# Step 2: Upload file to the bucket
bucket_url = dep["links"]["bucket"]
with open("analysis_code.zip", "rb") as f:
requests.put(f"{bucket_url}/analysis_code.zip",
headers={"Authorization": f"Bearer {TOKEN}"},
data=f)
# Step 3: Add metadata and publish
metadata = {
"metadata": {
"title": "Analysis Code for Paper XYZ",
"upload_type": "software",
"description": "Reproducible analysis pipeline.",
"creators": [{"name": "Doe, Jane", "affiliation": "University X"}]
}
}
requests.put(f"https://zenodo.org/api/deposit/depositions/{dep['id']}",
headers=headers, json=metadata)
requests.post(f"https://zenodo.org/api/deposit/depositions/{dep['id']}/actions/publish",
headers={"Authorization": f"Bearer {TOKEN}"})
Retrieve all records from a specific Zenodo community for institutional tracking:
curl "https://zenodo.org/api/records?communities=astronomy&size=100&sort=mostrecent"
development
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.