This API provides programmatic access to both N1C registries. Data is freely available for non-commercial and academic use.
/api/data?table=N1C_projects
/api/data?table=marketed_drugs
/api/data?table=assessed_variants
/api/search?q=ATM
ATM
.fetch("https://gene-registry.onrender.com/api/data?table=N1C_projects") .then(res => res.json()) .then(data => console.log("N1C Projects:", data)); fetch("https://gene-registry.onrender.com/api/data?table=marketed_drugs") .then(res => res.json()) .then(data => console.log("Marketed Drugs:", data)); fetch("https://gene-registry.onrender.com/api/data?table=assessed_variants") .then(res => res.json()) .then(data => console.log("Assessed Variants:", data)); fetch("https://gene-registry.onrender.com/api/search?q=ATM") .then(res => res.json()) .then(data => console.log("Search Results:", data));
You can link directly to specific entries in:
https://generegistry.n1collaborative.org/entry.html?id=123
https://generegistry.n1collaborative.org/variant_entry.html?id=123
This API is free for nonprofit, academic, and research purposes. Please cite the N1C Gene Registry if using the data.