← 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: 7-152229936-C-A (hg38)
Bash / cURL Example
bash
curl "https://api.genebe.net/cloud/api-public/v1/variant?chr=7&pos=152229936&ref=C&alt=A&genome=hg38&allGenes=true"API Response
json
{
"variants": [
{
"chr": "7",
"pos": 152229936,
"ref": "C",
"alt": "A",
"effect": "missense_variant",
"transcript": "ENST00000262189.11",
"consequences": [
{
"aa_ref": "C",
"aa_alt": "F",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 18,
"exon_rank_end": null,
"exon_count": 59,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "KMT2C",
"gene_hgnc_id": 13726,
"hgvs_c": "c.2963G>T",
"hgvs_p": "p.Cys988Phe",
"transcript": "NM_170606.3",
"protein_id": "NP_733751.2",
"transcript_support_level": null,
"aa_start": 988,
"aa_end": null,
"aa_length": 4911,
"cds_start": 2963,
"cds_end": null,
"cds_length": 14736,
"cdna_start": 3180,
"cdna_end": null,
"cdna_length": 16860,
"mane_select": "ENST00000262189.11",
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "C",
"aa_alt": "F",
"canonical": true,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 18,
"exon_rank_end": null,
"exon_count": 59,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "KMT2C",
"gene_hgnc_id": 13726,
"hgvs_c": "c.2963G>T",
"hgvs_p": "p.Cys988Phe",
"transcript": "ENST00000262189.11",
"protein_id": "ENSP00000262189.6",
"transcript_support_level": 1,
"aa_start": 988,
"aa_end": null,
"aa_length": 4911,
"cds_start": 2963,
"cds_end": null,
"cds_length": 14736,
"cdna_start": 3180,
"cdna_end": null,
"cdna_length": 16860,
"mane_select": "NM_170606.3",
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": false,
"consequences": [
"non_coding_transcript_exon_variant"
],
"exon_rank": 4,
"exon_rank_end": null,
"exon_count": 46,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "KMT2C",
"gene_hgnc_id": 13726,
"hgvs_c": "n.674G>T",
"hgvs_p": null,
"transcript": "ENST00000473186.5",
"protein_id": null,
"transcript_support_level": 1,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": -4,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": 12854,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "C",
"aa_alt": "F",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 18,
"exon_rank_end": null,
"exon_count": 60,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "KMT2C",
"gene_hgnc_id": 13726,
"hgvs_c": "c.2963G>T",
"hgvs_p": "p.Cys988Phe",
"transcript": "ENST00000682283.1",
"protein_id": "ENSP00000507485.1",
"transcript_support_level": null,
"aa_start": 988,
"aa_end": null,
"aa_length": 4968,
"cds_start": 2963,
"cds_end": null,
"cds_length": 14907,
"cdna_start": 2963,
"cdna_end": null,
"cdna_length": 15426,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "C",
"aa_alt": "F",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 17,
"exon_rank_end": null,
"exon_count": 56,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "KMT2C",
"gene_hgnc_id": 13726,
"hgvs_c": "c.2843G>T",
"hgvs_p": "p.Cys948Phe",
"transcript": "ENST00000679882.1",
"protein_id": "ENSP00000506154.1",
"transcript_support_level": null,
"aa_start": 948,
"aa_end": null,
"aa_length": 4762,
"cds_start": 2843,
"cds_end": null,
"cds_length": 14289,
"cdna_start": 2993,
"cdna_end": null,
"cdna_length": 14469,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "C",
"aa_alt": "F",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 3,
"exon_rank_end": null,
"exon_count": 44,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "KMT2C",
"gene_hgnc_id": 13726,
"hgvs_c": "c.311G>T",
"hgvs_p": "p.Cys104Phe",
"transcript": "ENST00000683200.1",
"protein_id": "ENSP00000508052.1",
"transcript_support_level": null,
"aa_start": 104,
"aa_end": null,
"aa_length": 4054,
"cds_start": 311,
"cds_end": null,
"cds_length": 12165,
"cdna_start": 311,
"cdna_end": null,
"cdna_length": 15972,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "C",
"aa_alt": "F",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 3,
"exon_rank_end": null,
"exon_count": 29,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "KMT2C",
"gene_hgnc_id": 13726,
"hgvs_c": "c.311G>T",
"hgvs_p": "p.Cys104Phe",
"transcript": "ENST00000680969.1",
"protein_id": "ENSP00000505951.1",
"transcript_support_level": null,
"aa_start": 104,
"aa_end": null,
"aa_length": 2951,
"cds_start": 311,
"cds_end": null,
"cds_length": 8856,
"cdna_start": 311,
"cdna_end": null,
"cdna_length": 8856,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "C",
"aa_alt": "F",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 9,
"exon_rank_end": null,
"exon_count": 31,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "KMT2C",
"gene_hgnc_id": 13726,
"hgvs_c": "c.1664G>T",
"hgvs_p": "p.Cys555Phe",
"transcript": "ENST00000681033.1",
"protein_id": "ENSP00000505058.1",
"transcript_support_level": null,
"aa_start": 555,
"aa_end": null,
"aa_length": 2716,
"cds_start": 1664,
"cds_end": null,
"cds_length": 8151,
"cdna_start": 1664,
"cdna_end": null,
"cdna_length": 8151,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "C",
"aa_alt": "F",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 18,
"exon_rank_end": null,
"exon_count": 26,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "KMT2C",
"gene_hgnc_id": 13726,
"hgvs_c": "c.2963G>T",
"hgvs_p": "p.Cys988Phe",
"transcript": "ENST00000684550.1",
"protein_id": "ENSP00000507135.1",
"transcript_support_level": null,
"aa_start": 988,
"aa_end": null,
"aa_length": 1376,
"cds_start": 2963,
"cds_end": null,
"cds_length": 4131,
"cdna_start": 3323,
"cdna_end": null,
"cdna_length": 4526,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "C",
"aa_alt": "F",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 18,
"exon_rank_end": null,
"exon_count": 25,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "KMT2C",
"gene_hgnc_id": 13726,
"hgvs_c": "c.2963G>T",
"hgvs_p": "p.Cys988Phe",
"transcript": "ENST00000683490.1",
"protein_id": "ENSP00000507385.1",
"transcript_support_level": null,
"aa_start": 988,
"aa_end": null,
"aa_length": 1325,
"cds_start": 2963,
"cds_end": null,
"cds_length": 3978,
"cdna_start": 3180,
"cdna_end": null,
"cdna_length": 5627,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": "C",
"aa_alt": "F",
"canonical": false,
"protein_coding": true,
"strand": false,
"consequences": [
"missense_variant"
],
"exon_rank": 3,
"exon_rank_end": null,
"exon_count": 8,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "KMT2C",
"gene_hgnc_id": 13726,
"hgvs_c": "c.311G>T",
"hgvs_p": "p.Cys104Phe",
"transcript": "ENST00000418673.2",
"protein_id": "ENSP00000403483.2",
"transcript_support_level": 5,
"aa_start": 104,
"aa_end": null,
"aa_length": 367,
"cds_start": 311,
"cds_end": null,
"cds_length": 1104,
"cdna_start": 311,
"cdna_end": null,
"cdna_length": 1531,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": false,
"consequences": [
"non_coding_transcript_exon_variant"
],
"exon_rank": 5,
"exon_rank_end": null,
"exon_count": 13,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "KMT2C",
"gene_hgnc_id": 13726,
"hgvs_c": "n.473G>T",
"hgvs_p": null,
"transcript": "ENST00000489110.2",
"protein_id": null,
"transcript_support_level": 2,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": -4,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": 1599,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": false,
"consequences": [
"non_coding_transcript_exon_variant"
],
"exon_rank": 19,
"exon_rank_end": null,
"exon_count": 34,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "KMT2C",
"gene_hgnc_id": 13726,
"hgvs_c": "n.2963G>T",
"hgvs_p": null,
"transcript": "ENST00000679645.1",
"protein_id": "ENSP00000505745.1",
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": -4,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": 7662,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": false,
"consequences": [
"non_coding_transcript_exon_variant"
],
"exon_rank": 3,
"exon_rank_end": null,
"exon_count": 11,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "KMT2C",
"gene_hgnc_id": 13726,
"hgvs_c": "n.311G>T",
"hgvs_p": null,
"transcript": "ENST00000681838.1",
"protein_id": "ENSP00000505661.1",
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": -4,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": 1454,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
},
{
"aa_ref": null,
"aa_alt": null,
"canonical": false,
"protein_coding": false,
"strand": false,
"consequences": [
"non_coding_transcript_exon_variant"
],
"exon_rank": 3,
"exon_rank_end": null,
"exon_count": 6,
"intron_rank": null,
"intron_rank_end": null,
"gene_symbol": "KMT2C",
"gene_hgnc_id": 13726,
"hgvs_c": "n.311G>T",
"hgvs_p": null,
"transcript": "ENST00000684140.1",
"protein_id": "ENSP00000508026.1",
"transcript_support_level": null,
"aa_start": null,
"aa_end": null,
"aa_length": null,
"cds_start": -4,
"cds_end": null,
"cds_length": null,
"cdna_start": null,
"cdna_end": null,
"cdna_length": 713,
"mane_select": null,
"mane_plus": null,
"biotype": null,
"feature": null
}
],
"gene_symbol": "KMT2C",
"gene_hgnc_id": 13726,
"dbsnp": "rs28522267",
"frequency_reference_population": null,
"hom_count_reference_population": null,
"allele_count_reference_population": null,
"gnomad_exomes_af": 0.487884,
"gnomad_genomes_af": 0.431876,
"gnomad_exomes_ac": 634391,
"gnomad_genomes_ac": 46735,
"gnomad_exomes_homalt": 39,
"gnomad_genomes_homalt": 0,
"gnomad_mito_homoplasmic": null,
"gnomad_mito_heteroplasmic": null,
"computational_score_selected": 0.008740901947021484,
"computational_prediction_selected": "Benign",
"computational_source_selected": "MetaRNN",
"splice_score_selected": 0.05999999865889549,
"splice_prediction_selected": "Benign",
"splice_source_selected": "max_spliceai",
"revel_score": 0.967,
"revel_prediction": "Pathogenic",
"alphamissense_score": 0.9986,
"alphamissense_prediction": null,
"bayesdelnoaf_score": 0.56,
"bayesdelnoaf_prediction": "Pathogenic",
"phylop100way_score": 7.899,
"phylop100way_prediction": "Pathogenic",
"spliceai_max_score": 0.06,
"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": -11,
"acmg_classification": "Benign",
"acmg_criteria": "PP3,BP4_Strong,BP6_Very_Strong",
"acmg_by_gene": [
{
"score": -11,
"benign_score": 12,
"pathogenic_score": 1,
"criteria": [
"PP3",
"BP4_Strong",
"BP6_Very_Strong"
],
"verdict": "Benign",
"transcript": "ENST00000262189.11",
"gene_symbol": "KMT2C",
"hgnc_id": 13726,
"effects": [
"missense_variant"
],
"inheritance_mode": "AD",
"hgvs_c": "c.2963G>T",
"hgvs_p": "p.Cys988Phe"
}
],
"clinvar_disease": "not provided,not specified",
"clinvar_classification": "Benign",
"clinvar_review_status": "criteria provided, multiple submitters, no conflicts",
"clinvar_submissions_summary": "B:2",
"phenotype_combined": "not specified|not provided",
"pathogenicity_classification_combined": "Benign",
"custom_annotations": null
}
],
"message": null
}