## Connections
### Web
### API (E-utilities)
# Search
curl "https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?db=pubmed&term=STRC+hearing+loss&retmax=20&retmode=json"
# Fetch abstract
curl "https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=pubmed&id=PMID&retmode=xml"
### Python (Biopython)
from Bio import Entrez, Medline
Entrez.email = "your@email.com"
handle = Entrez.esearch(db="pubmed", term="STRC gene therapy", retmax=20)
results = Entrez.read(handle)
print(f"Results: {results['Count']}")
VERIFIED — 40 papers for 'STRC stereocilin' in PubMed (121 for 'STRC hearing loss'). Key papers: Iranfar 2026 (dual AAV), Verpy 2001 (discovery), Vona 2015 (deletions). Recent PMIDs: 41884524, 41562875, 41508981.