Main
Registry

N1C Gene Registry API

This API provides programmatic access to both N1C registries. Data is freely available for non-commercial and academic use.

Available Endpoints

Example Usage (JavaScript)

    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));

Linking to Entries

You can link directly to specific entries in:

Terms of Use

This API is free for nonprofit, academic, and research purposes. Please cite the N1C Gene Registry if using the data.