← 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: 3-38846999-C-T (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "3",
      "pos": 38846999,
      "ref": "C",
      "alt": "T",
      "effect": "missense_variant",
      "transcript": "NM_014139.3",
      "consequences": [
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 30,
          "exon_rank_end": null,
          "exon_count": 30,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SCN11A",
          "gene_hgnc_id": 10583,
          "hgvs_c": "c.5071G>A",
          "hgvs_p": "p.Ala1691Thr",
          "transcript": "NM_001349253.2",
          "protein_id": "NP_001336182.1",
          "transcript_support_level": null,
          "aa_start": 1691,
          "aa_end": null,
          "aa_length": 1791,
          "cds_start": 5071,
          "cds_end": null,
          "cds_length": 5376,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000302328.9",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001349253.2"
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": true,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 30,
          "exon_rank_end": null,
          "exon_count": 30,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SCN11A",
          "gene_hgnc_id": 10583,
          "hgvs_c": "c.5071G>A",
          "hgvs_p": "p.Ala1691Thr",
          "transcript": "ENST00000302328.9",
          "protein_id": "ENSP00000307599.3",
          "transcript_support_level": 5,
          "aa_start": 1691,
          "aa_end": null,
          "aa_length": 1791,
          "cds_start": 5071,
          "cds_end": null,
          "cds_length": 5376,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_001349253.2",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000302328.9"
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 26,
          "exon_rank_end": null,
          "exon_count": 26,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SCN11A",
          "gene_hgnc_id": 10583,
          "hgvs_c": "c.5071G>A",
          "hgvs_p": "p.Ala1691Thr",
          "transcript": "NM_014139.3",
          "protein_id": "NP_054858.2",
          "transcript_support_level": null,
          "aa_start": 1691,
          "aa_end": null,
          "aa_length": 1791,
          "cds_start": 5071,
          "cds_end": null,
          "cds_length": 5376,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_014139.3"
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 33,
          "exon_rank_end": null,
          "exon_count": 33,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SCN11A",
          "gene_hgnc_id": 10583,
          "hgvs_c": "c.5071G>A",
          "hgvs_p": "p.Ala1691Thr",
          "transcript": "ENST00000668754.1",
          "protein_id": "ENSP00000499569.1",
          "transcript_support_level": null,
          "aa_start": 1691,
          "aa_end": null,
          "aa_length": 1791,
          "cds_start": 5071,
          "cds_end": null,
          "cds_length": 5376,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000668754.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SCN11A",
          "gene_hgnc_id": 10583,
          "hgvs_c": "c.4957G>A",
          "hgvs_p": "p.Ala1653Thr",
          "transcript": "ENST00000456224.7",
          "protein_id": "ENSP00000416757.3",
          "transcript_support_level": 5,
          "aa_start": 1653,
          "aa_end": null,
          "aa_length": 1753,
          "cds_start": 4957,
          "cds_end": null,
          "cds_length": 5262,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000456224.7"
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SCN11A",
          "gene_hgnc_id": 10583,
          "hgvs_c": "c.4891G>A",
          "hgvs_p": "p.Ala1631Thr",
          "transcript": "ENST00000675892.1",
          "protein_id": "ENSP00000502318.1",
          "transcript_support_level": null,
          "aa_start": 1631,
          "aa_end": null,
          "aa_length": 1731,
          "cds_start": 4891,
          "cds_end": null,
          "cds_length": 5196,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000675892.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 25,
          "exon_rank_end": null,
          "exon_count": 25,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SCN11A",
          "gene_hgnc_id": 10583,
          "hgvs_c": "c.4690G>A",
          "hgvs_p": "p.Ala1564Thr",
          "transcript": "ENST00000676176.1",
          "protein_id": "ENSP00000501891.1",
          "transcript_support_level": null,
          "aa_start": 1564,
          "aa_end": null,
          "aa_length": 1664,
          "cds_start": 4690,
          "cds_end": null,
          "cds_length": 4995,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000676176.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 32,
          "exon_rank_end": null,
          "exon_count": 32,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SCN11A",
          "gene_hgnc_id": 10583,
          "hgvs_c": "c.5446G>A",
          "hgvs_p": "p.Ala1816Thr",
          "transcript": "XM_047447378.1",
          "protein_id": "XP_047303334.1",
          "transcript_support_level": null,
          "aa_start": 1816,
          "aa_end": null,
          "aa_length": 1916,
          "cds_start": 5446,
          "cds_end": null,
          "cds_length": 5751,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047447378.1"
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SCN11A",
          "gene_hgnc_id": 10583,
          "hgvs_c": "c.5071G>A",
          "hgvs_p": "p.Ala1691Thr",
          "transcript": "XM_017005650.2",
          "protein_id": "XP_016861139.1",
          "transcript_support_level": null,
          "aa_start": 1691,
          "aa_end": null,
          "aa_length": 1791,
          "cds_start": 5071,
          "cds_end": null,
          "cds_length": 5376,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017005650.2"
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SCN11A",
          "gene_hgnc_id": 10583,
          "hgvs_c": "c.4798G>A",
          "hgvs_p": "p.Ala1600Thr",
          "transcript": "XM_017005651.2",
          "protein_id": "XP_016861140.1",
          "transcript_support_level": null,
          "aa_start": 1600,
          "aa_end": null,
          "aa_length": 1700,
          "cds_start": 4798,
          "cds_end": null,
          "cds_length": 5103,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017005651.2"
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 23,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SCN11A",
          "gene_hgnc_id": 10583,
          "hgvs_c": "c.4408G>A",
          "hgvs_p": "p.Ala1470Thr",
          "transcript": "XM_011533321.3",
          "protein_id": "XP_011531623.1",
          "transcript_support_level": null,
          "aa_start": 1470,
          "aa_end": null,
          "aa_length": 1570,
          "cds_start": 4408,
          "cds_end": null,
          "cds_length": 4713,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011533321.3"
        },
        {
          "aa_ref": "A",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SCN11A",
          "gene_hgnc_id": 10583,
          "hgvs_c": "c.3475G>A",
          "hgvs_p": "p.Ala1159Thr",
          "transcript": "XM_017005653.2",
          "protein_id": "XP_016861142.1",
          "transcript_support_level": null,
          "aa_start": 1159,
          "aa_end": null,
          "aa_length": 1259,
          "cds_start": 3475,
          "cds_end": null,
          "cds_length": 3780,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017005653.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SCN11A",
          "gene_hgnc_id": 10583,
          "hgvs_c": "n.*815G>A",
          "hgvs_p": null,
          "transcript": "ENST00000675223.1",
          "protein_id": "ENSP00000502481.1",
          "transcript_support_level": null,
          "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": "ENST00000675223.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SCN11A",
          "gene_hgnc_id": 10583,
          "hgvs_c": "n.*2242G>A",
          "hgvs_p": null,
          "transcript": "ENST00000675672.1",
          "protein_id": "ENSP00000502446.1",
          "transcript_support_level": null,
          "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": "ENST00000675672.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SCN11A",
          "gene_hgnc_id": 10583,
          "hgvs_c": "n.*4788G>A",
          "hgvs_p": null,
          "transcript": "ENST00000676045.1",
          "protein_id": "ENSP00000501685.1",
          "transcript_support_level": null,
          "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": "ENST00000676045.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SCN11A",
          "gene_hgnc_id": 10583,
          "hgvs_c": "n.*815G>A",
          "hgvs_p": null,
          "transcript": "ENST00000675223.1",
          "protein_id": "ENSP00000502481.1",
          "transcript_support_level": null,
          "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": "ENST00000675223.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SCN11A",
          "gene_hgnc_id": 10583,
          "hgvs_c": "n.*2242G>A",
          "hgvs_p": null,
          "transcript": "ENST00000675672.1",
          "protein_id": "ENSP00000502446.1",
          "transcript_support_level": null,
          "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": "ENST00000675672.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 27,
          "exon_rank_end": null,
          "exon_count": 27,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SCN11A",
          "gene_hgnc_id": 10583,
          "hgvs_c": "n.*4788G>A",
          "hgvs_p": null,
          "transcript": "ENST00000676045.1",
          "protein_id": "ENSP00000501685.1",
          "transcript_support_level": null,
          "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": "ENST00000676045.1"
        }
      ],
      "gene_symbol": "SCN11A",
      "gene_hgnc_id": 10583,
      "dbsnp": "rs754911340",
      "frequency_reference_population": 0.000027881939,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 45,
      "gnomad_exomes_af": 0.0000300982,
      "gnomad_genomes_af": 0.00000657609,
      "gnomad_exomes_ac": 44,
      "gnomad_genomes_ac": 1,
      "gnomad_exomes_homalt": 0,
      "gnomad_genomes_homalt": 0,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.06441906094551086,
      "computational_prediction_selected": "Benign",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0.009999999776482582,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.263,
      "revel_prediction": "Benign",
      "alphamissense_score": 0.0626,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.37,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": 1.698,
      "phylop100way_prediction": "Benign",
      "spliceai_max_score": 0.01,
      "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": -20,
      "acmg_classification": "Benign",
      "acmg_criteria": "BP4_Strong,BP6_Very_Strong,BS1,BS2",
      "acmg_by_gene": [
        {
          "score": -20,
          "benign_score": 20,
          "pathogenic_score": 0,
          "criteria": [
            "BP4_Strong",
            "BP6_Very_Strong",
            "BS1",
            "BS2"
          ],
          "verdict": "Benign",
          "transcript": "NM_014139.3",
          "gene_symbol": "SCN11A",
          "hgnc_id": 10583,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AD",
          "hgvs_c": "c.5071G>A",
          "hgvs_p": "p.Ala1691Thr"
        }
      ],
      "clinvar_disease": "Familial episodic pain syndrome with predominantly lower limb involvement,Hereditary sensory and autonomic neuropathy type 7,Inborn genetic diseases,not provided",
      "clinvar_classification": "Likely benign",
      "clinvar_review_status": "criteria provided, multiple submitters, no conflicts",
      "clinvar_submissions_summary": "LB:3",
      "phenotype_combined": "Familial episodic pain syndrome with predominantly lower limb involvement;Hereditary sensory and autonomic neuropathy type 7|not provided|Inborn genetic diseases",
      "pathogenicity_classification_combined": "Likely benign",
      "custom_annotations": null
    }
  ],
  "message": null
}