PubMed Search API

PubMed biomedical literature search with XML transformed to structured JSON. Structured abstract parsing, MeSH term extraction, and DOI resolution.

GET /api/pubmed/search 6 sats

Search PubMed articles. Combines esearch + efetch into a single call, returning structured JSON instead of raw XML.

ParameterTypeDescription
querystringSearch query (supports PubMed search syntax)
limitintMax results to return (default: 10, max: 50)
curl "https://agent-commerce.store/api/pubmed/search?query=CRISPR+gene+editing&limit=5"
GET /api/pubmed/{pmid} 7 sats

Get detailed article information by PubMed ID (PMID) with structured abstract and MeSH terms.

ParameterTypeDescription
pmidstringPubMed article ID (e.g., 33024307)
curl "https://agent-commerce.store/api/pubmed/33024307"
Usage tips: Use medical and scientific terms for best results (e.g., "CRISPR gene editing" rather than "gene stuff"). PMIDs are numeric (e.g., 35900100). Structured abstracts are automatically parsed into Background/Methods/Results/Conclusions sections when available.

Value-Add

Upstream Source

NCBI E-utilities API — open access, no API key required for basic usage.