← 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: 14-99700054-G-A (hg38)

Bash / cURL Example

bash
curl "https://api.genebe.net/cloud/api-public/v1/variant?chr=14&pos=99700054&ref=G&alt=A&genome=hg38&allGenes=true"

API Response

json
{
  "variants": [
    {
      "chr": "14",
      "pos": 99700054,
      "ref": "G",
      "alt": "A",
      "effect": "synonymous_variant",
      "transcript": "NM_006668.2",
      "consequences": [
        {
          "aa_ref": "E",
          "aa_alt": "E",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP46A1",
          "gene_hgnc_id": 2641,
          "hgvs_c": "c.396G>A",
          "hgvs_p": "p.Glu132Glu",
          "transcript": "NM_006668.2",
          "protein_id": "NP_006659.1",
          "transcript_support_level": null,
          "aa_start": 132,
          "aa_end": null,
          "aa_length": 500,
          "cds_start": 396,
          "cds_end": null,
          "cds_length": 1503,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000261835.8",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_006668.2"
        },
        {
          "aa_ref": "E",
          "aa_alt": "E",
          "canonical": true,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP46A1",
          "gene_hgnc_id": 2641,
          "hgvs_c": "c.396G>A",
          "hgvs_p": "p.Glu132Glu",
          "transcript": "ENST00000261835.8",
          "protein_id": "ENSP00000261835.3",
          "transcript_support_level": 1,
          "aa_start": 132,
          "aa_end": null,
          "aa_length": 500,
          "cds_start": 396,
          "cds_end": null,
          "cds_length": 1503,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_006668.2",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000261835.8"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP46A1",
          "gene_hgnc_id": 2641,
          "hgvs_c": "n.*148G>A",
          "hgvs_p": null,
          "transcript": "ENST00000554611.5",
          "protein_id": "ENSP00000451069.1",
          "transcript_support_level": 1,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "nonsense_mediated_decay",
          "feature": "ENST00000554611.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP46A1",
          "gene_hgnc_id": 2641,
          "hgvs_c": "n.*148G>A",
          "hgvs_p": null,
          "transcript": "ENST00000554611.5",
          "protein_id": "ENSP00000451069.1",
          "transcript_support_level": 1,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "nonsense_mediated_decay",
          "feature": "ENST00000554611.5"
        },
        {
          "aa_ref": "E",
          "aa_alt": "E",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP46A1",
          "gene_hgnc_id": 2641,
          "hgvs_c": "c.396G>A",
          "hgvs_p": "p.Glu132Glu",
          "transcript": "ENST00000900096.1",
          "protein_id": "ENSP00000570155.1",
          "transcript_support_level": null,
          "aa_start": 132,
          "aa_end": null,
          "aa_length": 583,
          "cds_start": 396,
          "cds_end": null,
          "cds_length": 1752,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000900096.1"
        },
        {
          "aa_ref": "E",
          "aa_alt": "E",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP46A1",
          "gene_hgnc_id": 2641,
          "hgvs_c": "c.396G>A",
          "hgvs_p": "p.Glu132Glu",
          "transcript": "ENST00000900093.1",
          "protein_id": "ENSP00000570152.1",
          "transcript_support_level": null,
          "aa_start": 132,
          "aa_end": null,
          "aa_length": 490,
          "cds_start": 396,
          "cds_end": null,
          "cds_length": 1473,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000900093.1"
        },
        {
          "aa_ref": "E",
          "aa_alt": "E",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP46A1",
          "gene_hgnc_id": 2641,
          "hgvs_c": "c.396G>A",
          "hgvs_p": "p.Glu132Glu",
          "transcript": "ENST00000900095.1",
          "protein_id": "ENSP00000570154.1",
          "transcript_support_level": null,
          "aa_start": 132,
          "aa_end": null,
          "aa_length": 463,
          "cds_start": 396,
          "cds_end": null,
          "cds_length": 1392,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000900095.1"
        },
        {
          "aa_ref": "E",
          "aa_alt": "E",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP46A1",
          "gene_hgnc_id": 2641,
          "hgvs_c": "c.315G>A",
          "hgvs_p": "p.Glu105Glu",
          "transcript": "ENST00000941881.1",
          "protein_id": "ENSP00000611940.1",
          "transcript_support_level": null,
          "aa_start": 105,
          "aa_end": null,
          "aa_length": 463,
          "cds_start": 315,
          "cds_end": null,
          "cds_length": 1392,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000941881.1"
        },
        {
          "aa_ref": "E",
          "aa_alt": "E",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP46A1",
          "gene_hgnc_id": 2641,
          "hgvs_c": "c.159G>A",
          "hgvs_p": "p.Glu53Glu",
          "transcript": "ENST00000900094.1",
          "protein_id": "ENSP00000570153.1",
          "transcript_support_level": null,
          "aa_start": 53,
          "aa_end": null,
          "aa_length": 421,
          "cds_start": 159,
          "cds_end": null,
          "cds_length": 1266,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000900094.1"
        },
        {
          "aa_ref": "E",
          "aa_alt": "E",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP46A1",
          "gene_hgnc_id": 2641,
          "hgvs_c": "c.159G>A",
          "hgvs_p": "p.Glu53Glu",
          "transcript": "ENST00000900097.1",
          "protein_id": "ENSP00000570156.1",
          "transcript_support_level": null,
          "aa_start": 53,
          "aa_end": null,
          "aa_length": 411,
          "cds_start": 159,
          "cds_end": null,
          "cds_length": 1236,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000900097.1"
        },
        {
          "aa_ref": "E",
          "aa_alt": "E",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP46A1",
          "gene_hgnc_id": 2641,
          "hgvs_c": "c.105G>A",
          "hgvs_p": "p.Glu35Glu",
          "transcript": "ENST00000380228.6",
          "protein_id": "ENSP00000369577.3",
          "transcript_support_level": 2,
          "aa_start": 35,
          "aa_end": null,
          "aa_length": 403,
          "cds_start": 105,
          "cds_end": null,
          "cds_length": 1212,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000380228.6"
        },
        {
          "aa_ref": "E",
          "aa_alt": "E",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP46A1",
          "gene_hgnc_id": 2641,
          "hgvs_c": "c.396G>A",
          "hgvs_p": "p.Glu132Glu",
          "transcript": "XM_011536364.2",
          "protein_id": "XP_011534666.1",
          "transcript_support_level": null,
          "aa_start": 132,
          "aa_end": null,
          "aa_length": 490,
          "cds_start": 396,
          "cds_end": null,
          "cds_length": 1473,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011536364.2"
        },
        {
          "aa_ref": "E",
          "aa_alt": "E",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYP46A1",
          "gene_hgnc_id": 2641,
          "hgvs_c": "c.282G>A",
          "hgvs_p": "p.Glu94Glu",
          "transcript": "XM_017020933.3",
          "protein_id": "XP_016876422.1",
          "transcript_support_level": null,
          "aa_start": 94,
          "aa_end": null,
          "aa_length": 462,
          "cds_start": 282,
          "cds_end": null,
          "cds_length": 1389,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017020933.3"
        }
      ],
      "gene_symbol": "CYP46A1",
      "gene_hgnc_id": 2641,
      "dbsnp": "rs761460288",
      "frequency_reference_population": 0.0000020578814,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 3,
      "gnomad_exomes_af": 0.00000205788,
      "gnomad_genomes_af": null,
      "gnomad_exomes_ac": 3,
      "gnomad_genomes_ac": null,
      "gnomad_exomes_homalt": 0,
      "gnomad_genomes_homalt": null,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.04699999839067459,
      "computational_prediction_selected": "Benign",
      "computational_source_selected": "REVEL",
      "splice_score_selected": 0,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.047,
      "revel_prediction": "Benign",
      "alphamissense_score": null,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.42,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": -0.321,
      "phylop100way_prediction": "Benign",
      "spliceai_max_score": 0,
      "spliceai_max_prediction": "Benign",
      "dbscsnv_ada_score": null,
      "dbscsnv_ada_prediction": null,
      "apogee2_score": null,
      "apogee2_prediction": null,
      "mitotip_score": null,
      "mitotip_prediction": null,
      "acmg_score": -1,
      "acmg_classification": "Likely_benign",
      "acmg_criteria": "PM2,BP4_Moderate,BP7",
      "acmg_by_gene": [
        {
          "score": -1,
          "benign_score": 3,
          "pathogenic_score": 2,
          "criteria": [
            "PM2",
            "BP4_Moderate",
            "BP7"
          ],
          "verdict": "Likely_benign",
          "transcript": "NM_006668.2",
          "gene_symbol": "CYP46A1",
          "hgnc_id": 2641,
          "effects": [
            "synonymous_variant"
          ],
          "inheritance_mode": "AR",
          "hgvs_c": "c.396G>A",
          "hgvs_p": "p.Glu132Glu"
        }
      ],
      "clinvar_disease": "",
      "clinvar_classification": "",
      "clinvar_review_status": "",
      "clinvar_submissions_summary": "",
      "phenotype_combined": null,
      "pathogenicity_classification_combined": null,
      "custom_annotations": null
    }
  ],
  "message": null
}