← Back to variant description

GeneBe API Showcase

This page demonstrates how to use the GeneBe API to query variant information. The API provides programmatic access to genomic annotations and variant data.

API presented here should be used for checking single variants. If you want to check many variants at once, please use other API endpoints that you will find in the documentation.

Documentation & Advanced Usage

Complete API documentation:docs.genebe.net/docs/api/overview/

Interactive endpoint tester:api.genebe.net/cloud/gb-api-doc/swagger-ui/

Python client for pandas:pypi.org/project/genebe/

Java CLI for VCF files:github.com/pstawinski/genebe-cli

All tools documented at:docs.genebe.net

API Request Examples for Variant: 17-7442690-C-T (hg38)

Bash / cURL Example

bash
curl "https://api.genebe.net/cloud/api-public/v1/variant?chr=17&pos=7442690&ref=C&alt=T&genome=hg38&allGenes=true"

API Response

json
{
  "message": null,
  "variants": [
    {
      "acmg_by_gene": [
        {
          "benign_score": 4,
          "criteria": [
            "PP3_Moderate",
            "BS2"
          ],
          "effects": [
            "missense_variant"
          ],
          "gene_symbol": "FGF11",
          "hgnc_id": 3667,
          "hgvs_c": "c.505C>T",
          "hgvs_p": "p.Arg169Trp",
          "inheritance_mode": "AD",
          "pathogenic_score": 2,
          "score": -2,
          "transcript": "NM_004112.4",
          "verdict": "Likely_benign"
        },
        {
          "benign_score": 0,
          "criteria": [
            "PM2",
            "PP3_Moderate"
          ],
          "effects": [
            "non_coding_transcript_exon_variant"
          ],
          "gene_symbol": "ENSG00000272884",
          "hgnc_id": null,
          "hgvs_c": "n.2277C>T",
          "hgvs_p": null,
          "inheritance_mode": "",
          "pathogenic_score": 4,
          "score": 4,
          "transcript": "ENST00000575331.1",
          "verdict": "Uncertain_significance"
        },
        {
          "benign_score": 0,
          "criteria": [
            "PM2",
            "PP3_Moderate"
          ],
          "effects": [
            "non_coding_transcript_exon_variant"
          ],
          "gene_symbol": "ENSG00000262880",
          "hgnc_id": null,
          "hgvs_c": "n.584C>T",
          "hgvs_p": null,
          "inheritance_mode": "",
          "pathogenic_score": 4,
          "score": 4,
          "transcript": "ENST00000575310.1",
          "verdict": "Uncertain_significance"
        },
        {
          "benign_score": 0,
          "criteria": [
            "PM2",
            "PP3_Moderate"
          ],
          "effects": [
            "intron_variant"
          ],
          "gene_symbol": "ENSG00000263301",
          "hgnc_id": null,
          "hgvs_c": "n.69+569G>A",
          "hgvs_p": null,
          "inheritance_mode": "",
          "pathogenic_score": 4,
          "score": 4,
          "transcript": "ENST00000576615.1",
          "verdict": "Uncertain_significance"
        }
      ],
      "acmg_classification": "Likely_benign",
      "acmg_criteria": "PP3_Moderate,BS2",
      "acmg_score": -2,
      "allele_count_reference_population": 126,
      "alphamissense_prediction": null,
      "alphamissense_score": 0.8402,
      "alt": "T",
      "apogee2_prediction": null,
      "apogee2_score": null,
      "bayesdelnoaf_prediction": "Pathogenic",
      "bayesdelnoaf_score": 0.34,
      "chr": "17",
      "clinvar_classification": "Uncertain significance",
      "clinvar_disease": "not specified",
      "clinvar_review_status": "criteria provided, single submitter",
      "clinvar_submissions_summary": "US:1",
      "computational_prediction_selected": "Pathogenic",
      "computational_score_selected": 0.9335796236991882,
      "computational_source_selected": "MetaRNN",
      "consequences": [
        {
          "aa_alt": "W",
          "aa_end": null,
          "aa_length": 225,
          "aa_ref": "R",
          "aa_start": 169,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 2578,
          "cdna_start": 614,
          "cds_end": null,
          "cds_length": 678,
          "cds_start": 505,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 5,
          "exon_rank": 4,
          "exon_rank_end": null,
          "feature": "NM_004112.4",
          "gene_hgnc_id": 3667,
          "gene_symbol": "FGF11",
          "hgvs_c": "c.505C>T",
          "hgvs_p": "p.Arg169Trp",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": "ENST00000293829.9",
          "protein_coding": true,
          "protein_id": "NP_004103.1",
          "strand": true,
          "transcript": "NM_004112.4",
          "transcript_support_level": null
        },
        {
          "aa_alt": "W",
          "aa_end": null,
          "aa_length": 225,
          "aa_ref": "R",
          "aa_start": 169,
          "biotype": "protein_coding",
          "canonical": true,
          "cdna_end": null,
          "cdna_length": 2578,
          "cdna_start": 614,
          "cds_end": null,
          "cds_length": 678,
          "cds_start": 505,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 5,
          "exon_rank": 4,
          "exon_rank_end": null,
          "feature": "ENST00000293829.9",
          "gene_hgnc_id": 3667,
          "gene_symbol": "FGF11",
          "hgvs_c": "c.505C>T",
          "hgvs_p": "p.Arg169Trp",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": "NM_004112.4",
          "protein_coding": true,
          "protein_id": "ENSP00000293829.4",
          "strand": true,
          "transcript": "ENST00000293829.9",
          "transcript_support_level": 1
        },
        {
          "aa_alt": "W",
          "aa_end": null,
          "aa_length": 101,
          "aa_ref": "R",
          "aa_start": 45,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 2358,
          "cdna_start": 1903,
          "cds_end": null,
          "cds_length": 306,
          "cds_start": 133,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 4,
          "exon_rank": 3,
          "exon_rank_end": null,
          "feature": "ENST00000572907.5",
          "gene_hgnc_id": 3667,
          "gene_symbol": "FGF11",
          "hgvs_c": "c.133C>T",
          "hgvs_p": "p.Arg45Trp",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000465134.1",
          "strand": true,
          "transcript": "ENST00000572907.5",
          "transcript_support_level": 1
        },
        {
          "aa_alt": "W",
          "aa_end": null,
          "aa_length": 101,
          "aa_ref": "R",
          "aa_start": 45,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 928,
          "cdna_start": 570,
          "cds_end": null,
          "cds_length": 306,
          "cds_start": 133,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 5,
          "exon_rank": 4,
          "exon_rank_end": null,
          "feature": "ENST00000575235.5",
          "gene_hgnc_id": 3667,
          "gene_symbol": "FGF11",
          "hgvs_c": "c.133C>T",
          "hgvs_p": "p.Arg45Trp",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000459746.1",
          "strand": true,
          "transcript": "ENST00000575235.5",
          "transcript_support_level": 1
        },
        {
          "aa_alt": null,
          "aa_end": null,
          "aa_length": null,
          "aa_ref": null,
          "aa_start": null,
          "biotype": "pseudogene",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 5553,
          "cdna_start": null,
          "cds_end": null,
          "cds_length": null,
          "cds_start": null,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_count": 3,
          "exon_rank": 3,
          "exon_rank_end": null,
          "feature": "ENST00000575331.1",
          "gene_hgnc_id": null,
          "gene_symbol": "ENSG00000272884",
          "hgvs_c": "n.2277C>T",
          "hgvs_p": null,
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": false,
          "protein_id": null,
          "strand": true,
          "transcript": "ENST00000575331.1",
          "transcript_support_level": 1
        },
        {
          "aa_alt": "W",
          "aa_end": null,
          "aa_length": 197,
          "aa_ref": "R",
          "aa_start": 141,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 3732,
          "cdna_start": 1777,
          "cds_end": null,
          "cds_length": 594,
          "cds_start": 421,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 5,
          "exon_rank": 4,
          "exon_rank_end": null,
          "feature": "ENST00000874610.1",
          "gene_hgnc_id": 3667,
          "gene_symbol": "FGF11",
          "hgvs_c": "c.421C>T",
          "hgvs_p": "p.Arg141Trp",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000544669.1",
          "strand": true,
          "transcript": "ENST00000874610.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "W",
          "aa_end": null,
          "aa_length": 166,
          "aa_ref": "R",
          "aa_start": 110,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 2345,
          "cdna_start": 381,
          "cds_end": null,
          "cds_length": 501,
          "cds_start": 328,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 5,
          "exon_rank": 4,
          "exon_rank_end": null,
          "feature": "NM_001303460.2",
          "gene_hgnc_id": 3667,
          "gene_symbol": "FGF11",
          "hgvs_c": "c.328C>T",
          "hgvs_p": "p.Arg110Trp",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "NP_001290389.1",
          "strand": true,
          "transcript": "NM_001303460.2",
          "transcript_support_level": null
        },
        {
          "aa_alt": "W",
          "aa_end": null,
          "aa_length": 101,
          "aa_ref": "R",
          "aa_start": 45,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 2315,
          "cdna_start": 386,
          "cds_end": null,
          "cds_length": 306,
          "cds_start": 133,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 5,
          "exon_rank": 4,
          "exon_rank_end": null,
          "feature": "ENST00000575082.5",
          "gene_hgnc_id": 3667,
          "gene_symbol": "FGF11",
          "hgvs_c": "c.133C>T",
          "hgvs_p": "p.Arg45Trp",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000461397.1",
          "strand": true,
          "transcript": "ENST00000575082.5",
          "transcript_support_level": 2
        },
        {
          "aa_alt": "W",
          "aa_end": null,
          "aa_length": 101,
          "aa_ref": "R",
          "aa_start": 45,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 990,
          "cdna_start": 407,
          "cds_end": null,
          "cds_length": 306,
          "cds_start": 133,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 5,
          "exon_rank": 4,
          "exon_rank_end": null,
          "feature": "ENST00000575398.5",
          "gene_hgnc_id": 3667,
          "gene_symbol": "FGF11",
          "hgvs_c": "c.133C>T",
          "hgvs_p": "p.Arg45Trp",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000460753.1",
          "strand": true,
          "transcript": "ENST00000575398.5",
          "transcript_support_level": 2
        },
        {
          "aa_alt": null,
          "aa_end": null,
          "aa_length": null,
          "aa_ref": null,
          "aa_start": null,
          "biotype": "pseudogene",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 1975,
          "cdna_start": null,
          "cds_end": null,
          "cds_length": null,
          "cds_start": null,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_count": 6,
          "exon_rank": 6,
          "exon_rank_end": null,
          "feature": "ENST00000575310.1",
          "gene_hgnc_id": null,
          "gene_symbol": "ENSG00000262880",
          "hgvs_c": "n.584C>T",
          "hgvs_p": null,
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": false,
          "protein_id": null,
          "strand": true,
          "transcript": "ENST00000575310.1",
          "transcript_support_level": 2
        },
        {
          "aa_alt": null,
          "aa_end": null,
          "aa_length": null,
          "aa_ref": null,
          "aa_start": null,
          "biotype": "pseudogene",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 2509,
          "cdna_start": null,
          "cds_end": null,
          "cds_length": null,
          "cds_start": null,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_count": 5,
          "exon_rank": 4,
          "exon_rank_end": null,
          "feature": "NR_130156.2",
          "gene_hgnc_id": 3667,
          "gene_symbol": "FGF11",
          "hgvs_c": "n.545C>T",
          "hgvs_p": null,
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": false,
          "protein_id": null,
          "strand": true,
          "transcript": "NR_130156.2",
          "transcript_support_level": null
        },
        {
          "aa_alt": null,
          "aa_end": null,
          "aa_length": null,
          "aa_ref": null,
          "aa_start": null,
          "biotype": "pseudogene",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 330,
          "cdna_start": null,
          "cds_end": null,
          "cds_length": null,
          "cds_start": null,
          "consequences": [
            "intron_variant"
          ],
          "exon_count": 2,
          "exon_rank": null,
          "exon_rank_end": null,
          "feature": "ENST00000576615.1",
          "gene_hgnc_id": null,
          "gene_symbol": "ENSG00000263301",
          "hgvs_c": "n.69+569G>A",
          "hgvs_p": null,
          "intron_rank": 1,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": false,
          "protein_id": null,
          "strand": false,
          "transcript": "ENST00000576615.1",
          "transcript_support_level": 3
        },
        {
          "aa_alt": null,
          "aa_end": null,
          "aa_length": null,
          "aa_ref": null,
          "aa_start": null,
          "biotype": "retained_intron",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 912,
          "cdna_start": null,
          "cds_end": null,
          "cds_length": null,
          "cds_start": null,
          "consequences": [
            "downstream_gene_variant"
          ],
          "exon_count": 3,
          "exon_rank": null,
          "exon_rank_end": null,
          "feature": "ENST00000576328.1",
          "gene_hgnc_id": 3667,
          "gene_symbol": "FGF11",
          "hgvs_c": "n.*158C>T",
          "hgvs_p": null,
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": false,
          "protein_id": null,
          "strand": true,
          "transcript": "ENST00000576328.1",
          "transcript_support_level": 1
        }
      ],
      "custom_annotations": null,
      "dbscsnv_ada_prediction": null,
      "dbscsnv_ada_score": null,
      "dbsnp": "rs146590295",
      "effect": "missense_variant",
      "frequency_reference_population": 0.00007806498,
      "gene_hgnc_id": 3667,
      "gene_symbol": "FGF11",
      "gnomad_exomes_ac": 120,
      "gnomad_exomes_af": 0.0000820863,
      "gnomad_exomes_homalt": 0,
      "gnomad_genomes_ac": 6,
      "gnomad_genomes_af": 0.0000394311,
      "gnomad_genomes_homalt": 0,
      "gnomad_mito_heteroplasmic": null,
      "gnomad_mito_homoplasmic": null,
      "hom_count_reference_population": 0,
      "mitotip_prediction": null,
      "mitotip_score": null,
      "pathogenicity_classification_combined": "Uncertain significance",
      "phenotype_combined": "not specified",
      "phylop100way_prediction": "Benign",
      "phylop100way_score": 0.698,
      "pos": 7442690,
      "ref": "C",
      "revel_prediction": "Pathogenic",
      "revel_score": 0.824,
      "splice_prediction_selected": "Benign",
      "splice_score_selected": 0,
      "splice_source_selected": "max_spliceai",
      "spliceai_max_prediction": "Benign",
      "spliceai_max_score": 0,
      "transcript": "NM_004112.4"
    }
  ]
}
For research and educational, non-commercial use only. Not for clinical or diagnostic use. GeneBe does not provide medical advice. Data use for AI modeling is prohibited: if used, the cost is $0.001 per byte of downloaded uncompressed data.