A project's metadata
API · /pride-api
PRIDE API
The PRIDE proteomics archive as an API, powered by the EMBL-EBI PRIDE Archive — the world's largest public repository of mass-spectrometry proteomics data and a founding member of ProteomeXchange. Search the public proteomics experiments by keyword (returning each project's accession, title, organisms, diseases and instruments); read a project's full metadata including its description, keywords, organisms and organism parts, mass-spectrometry instruments, software, the protein modifications identified, sample- and data-processing protocols, submitters, affiliations and the linked publication (DOI and PubMed); list a project's data files with their category, format, size and a direct download link; and explore facets — the diseases, organisms, instruments, experiment types, software and countries represented across matching projects — for discovery. Ideal for proteomics and systems-biology research, dataset reuse and meta-analysis, bioinformatics pipelines, and tools that integrate experimental evidence. Project accessions look like PXD000001. Data from EMBL-EBI.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 301 ms
- Server probes · 24h
- Subscribers
- 4,443
- active
- Total calls
- 15
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 540 calls / month
- 2 requests / second
- Hard cap (429 above quota, no overage)
- 540 calls/month
- 2 req/sec
- Search, projects & files
- No credit card
Starter
€6.60 /month
- 19,500 calls / month
- 6 requests / second
- Hard cap (429 above quota, no overage)
- 19.5k calls/month
- 6 req/sec
- Project & file lookup
- Email support
Pro
€20.00 /month
- 88,000 calls / month
- 15 requests / second
- Hard cap (429 above quota, no overage)
- 88k calls/month
- 15 req/sec
- Dataset reuse & meta-analysis
- Priority support
Mega
€55.50 /month
- 340,000 calls / month
- 40 requests / second
- Hard cap (429 above quota, no overage)
- 340k calls/month
- 40 req/sec
- High-throughput proteomics
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
UniProt API
The UniProt protein knowledge base as an API, powered by the official UniProt REST service curated by EMBL-EBI, SIB and PIR. Look up any protein by its UniProt accession for protein and gene names, organism, length, mass, function, keywords, Gene Ontology (GO) terms and linked PDB 3D structures; run full-text protein searches filtered by organism (NCBI taxon id) and Swiss-Prot review status; fetch amino-acid sequences with FASTA, molecular weight and CRC64 checksum; list sequence features such as signal peptides, chains, domains, active and binding sites, modified residues and natural variants, with a by-type breakdown; resolve NCBI taxonomy nodes with their full lineage; and pull reference proteomes with protein counts and genome-assembly ids. Across all kingdoms of life, from human to bacteria. Ideal for bioinformatics pipelines, drug-discovery and proteomics tools, sequence-analysis dashboards, academic research apps and life-science chatbots.
api.oanor.com/uniprot-api
MetaboLights API
MetaboLights as an API, powered by EMBL-EBI — the world's premier open repository for metabolomics experiments (NMR spectroscopy and mass spectrometry) and a sister resource to PRIDE for proteomics. Search the public metabolomics studies by keyword (returning each study's accession, title, description and organism); read a study's full metadata including its abstract, status, submission and release dates, study-design descriptors, experimental factors, the analytical assays with their measurement type, technology and platform, the contributors and their roles, the linked publications with DOI and PubMed identifiers, submitters, sample count, FTP download URL and data license; inspect the analytical workflow — every protocol with its name, type, description and parameters (sample collection, extraction, chromatography, NMR/MS spectroscopy, data transformation and metabolite identification); and list the organisms and organism parts studied with their ontology terms. Ideal for metabolomics and systems-biology research, dataset reuse and meta-analysis, bioinformatics pipelines and tools that integrate experimental evidence. Study accessions look like MTBLS1. Data from EMBL-EBI MetaboLights.
api.oanor.com/metabolights-api
Gene Expression API
Functional-genomics experiments as an API — powered by NCBI GEO (Gene Expression Omnibus), the largest public repository of gene-expression data. GEO archives expression series and curated datasets from microarray and high-throughput-sequencing experiments across every organism. Search experiments by keyword and optionally by organism, and look up any series or dataset to get its metadata: title, summary, assay type (expression profiling by array or by sequencing), organism, number of samples, platform and the publication behind it. From β-cell stress studies to cancer transcriptomics across human and mouse, it turns the GEO archive into a simple search-and-fetch API for transcriptomics, bioinformatics and research-data discovery. A gene-expression / functional-genomics dataset repository — distinct from sequence (ENA), variant (ClinVar, dbVar), structure (PDB) and ontology databases. Open data from NCBI GEO (public domain).
api.oanor.com/geodatasets-api
DataCite API
DataCite as an API — the global registry of DOIs (Digital Object Identifiers) for research outputs. Where Crossref registers DOIs for journal articles, DataCite registers and describes DOIs for research data, software, samples, dissertations, preprints, models, images and other outputs, from repositories such as Zenodo, Dryad and thousands of institutions. /v1/search?query=climate full-text searches the registry and can be narrowed by resource type (type=dataset, software, text, image, audiovisual, collection, model and more), returning each DOI with its title, type, creators, publisher and publication year. /v1/doi?id=10.5281/zenodo.3509134 returns a single DOI's full metadata — title, resource type, creators, publisher, publication year, description, subjects, version, license and registration date. DOIs look like 10.5281/zenodo.3509134 (Zenodo) or 10.5061/dryad.xxxx (Dryad). Ideal for research-data discovery and citation, data-repository and reference-management tools, software-citation features and reproducibility workflows. Metadata is CC0 from DataCite. This is the registry of research data and software DOIs — distinct from the journal-article DOI index (Crossref) and from preprint and open-access services.
api.oanor.com/datacite-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for PRIDE API?
What's the rate limit for PRIDE API?
How much does PRIDE API cost?
Can I cancel my subscription anytime?
Is PRIDE API GDPR-compliant?
Pick an endpoint from the list on the left to see its details and try it.
Code snippets
Sign up to get an API key, then call any path under your slug.
curl https://api.oanor.com/pride-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/pride-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/pride-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/pride-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Ratings
Sign in to rate.
No reviews yet.
Discussion
Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.
Sign in to start a thread or reply.
Sign inNew thread
·
-
Provider answer
🔒 This thread is locked — no new replies.
-
·
- No threads yet — start the discussion.
Support
Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.
Sign in to open a support ticket.
Sign inOpen new ticket
Describe what you need help with. The provider team gets an email and replies on the ticket page.
-
·
Urgent - No tickets yet for this API.