← 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: 19-48470635-T-C (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "19",
      "pos": 48470635,
      "ref": "T",
      "alt": "C",
      "effect": "missense_variant",
      "transcript": "NM_004228.7",
      "consequences": [
        {
          "aa_ref": "M",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYTH2",
          "gene_hgnc_id": 9502,
          "hgvs_c": "c.200T>C",
          "hgvs_p": "p.Met67Thr",
          "transcript": "NM_004228.7",
          "protein_id": "NP_004219.3",
          "transcript_support_level": null,
          "aa_start": 67,
          "aa_end": null,
          "aa_length": 399,
          "cds_start": 200,
          "cds_end": null,
          "cds_length": 1200,
          "cdna_start": 339,
          "cdna_end": null,
          "cdna_length": 4443,
          "mane_select": "ENST00000452733.7",
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "M",
          "aa_alt": "T",
          "canonical": true,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYTH2",
          "gene_hgnc_id": 9502,
          "hgvs_c": "c.200T>C",
          "hgvs_p": "p.Met67Thr",
          "transcript": "ENST00000452733.7",
          "protein_id": "ENSP00000408236.2",
          "transcript_support_level": 1,
          "aa_start": 67,
          "aa_end": null,
          "aa_length": 399,
          "cds_start": 200,
          "cds_end": null,
          "cds_length": 1200,
          "cdna_start": 339,
          "cdna_end": null,
          "cdna_length": 4443,
          "mane_select": "NM_004228.7",
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "M",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYTH2",
          "gene_hgnc_id": 9502,
          "hgvs_c": "c.200T>C",
          "hgvs_p": "p.Met67Thr",
          "transcript": "ENST00000427476.4",
          "protein_id": "ENSP00000486578.1",
          "transcript_support_level": 1,
          "aa_start": 67,
          "aa_end": null,
          "aa_length": 400,
          "cds_start": 200,
          "cds_end": null,
          "cds_length": 1203,
          "cdna_start": 500,
          "cdna_end": null,
          "cdna_length": 4606,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "M",
          "aa_alt": "T",
          "canonical": true,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ENSG00000268465",
          "gene_hgnc_id": null,
          "hgvs_c": "c.152T>C",
          "hgvs_p": "p.Met51Thr",
          "transcript": "ENST00000595676.1",
          "protein_id": "ENSP00000470383.1",
          "transcript_support_level": 2,
          "aa_start": 51,
          "aa_end": null,
          "aa_length": 96,
          "cds_start": 152,
          "cds_end": null,
          "cds_length": 293,
          "cdna_start": 302,
          "cdna_end": null,
          "cdna_length": 443,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "M",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYTH2",
          "gene_hgnc_id": 9502,
          "hgvs_c": "c.335T>C",
          "hgvs_p": "p.Met112Thr",
          "transcript": "ENST00000704950.1",
          "protein_id": "ENSP00000516062.1",
          "transcript_support_level": null,
          "aa_start": 112,
          "aa_end": null,
          "aa_length": 444,
          "cds_start": 335,
          "cds_end": null,
          "cds_length": 1335,
          "cdna_start": 339,
          "cdna_end": null,
          "cdna_length": 4443,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "M",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYTH2",
          "gene_hgnc_id": 9502,
          "hgvs_c": "c.200T>C",
          "hgvs_p": "p.Met67Thr",
          "transcript": "NM_017457.6",
          "protein_id": "NP_059431.1",
          "transcript_support_level": null,
          "aa_start": 67,
          "aa_end": null,
          "aa_length": 400,
          "cds_start": 200,
          "cds_end": null,
          "cds_length": 1203,
          "cdna_start": 339,
          "cdna_end": null,
          "cdna_length": 4446,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "M",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYTH2",
          "gene_hgnc_id": 9502,
          "hgvs_c": "c.200T>C",
          "hgvs_p": "p.Met67Thr",
          "transcript": "ENST00000641098.1",
          "protein_id": "ENSP00000493357.1",
          "transcript_support_level": null,
          "aa_start": 67,
          "aa_end": null,
          "aa_length": 400,
          "cds_start": 200,
          "cds_end": null,
          "cds_length": 1203,
          "cdna_start": 275,
          "cdna_end": null,
          "cdna_length": 2721,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "M",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYTH2",
          "gene_hgnc_id": 9502,
          "hgvs_c": "c.200T>C",
          "hgvs_p": "p.Met67Thr",
          "transcript": "ENST00000460595.5",
          "protein_id": "ENSP00000493227.1",
          "transcript_support_level": 3,
          "aa_start": 67,
          "aa_end": null,
          "aa_length": 273,
          "cds_start": 200,
          "cds_end": null,
          "cds_length": 824,
          "cdna_start": 402,
          "cdna_end": null,
          "cdna_length": 1026,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "M",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYTH2",
          "gene_hgnc_id": 9502,
          "hgvs_c": "c.266T>C",
          "hgvs_p": "p.Met89Thr",
          "transcript": "ENST00000325139.9",
          "protein_id": "ENSP00000314566.5",
          "transcript_support_level": 2,
          "aa_start": 89,
          "aa_end": null,
          "aa_length": 253,
          "cds_start": 266,
          "cds_end": null,
          "cds_length": 762,
          "cdna_start": 591,
          "cdna_end": null,
          "cdna_length": 1087,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "M",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYTH2",
          "gene_hgnc_id": 9502,
          "hgvs_c": "c.266T>C",
          "hgvs_p": "p.Met89Thr",
          "transcript": "XM_006723472.3",
          "protein_id": "XP_006723535.1",
          "transcript_support_level": null,
          "aa_start": 89,
          "aa_end": null,
          "aa_length": 421,
          "cds_start": 266,
          "cds_end": null,
          "cds_length": 1266,
          "cdna_start": 586,
          "cdna_end": null,
          "cdna_length": 4690,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "M",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYTH2",
          "gene_hgnc_id": 9502,
          "hgvs_c": "c.266T>C",
          "hgvs_p": "p.Met89Thr",
          "transcript": "XM_047439682.1",
          "protein_id": "XP_047295638.1",
          "transcript_support_level": null,
          "aa_start": 89,
          "aa_end": null,
          "aa_length": 421,
          "cds_start": 266,
          "cds_end": null,
          "cds_length": 1266,
          "cdna_start": 586,
          "cdna_end": null,
          "cdna_length": 4029,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "M",
          "aa_alt": "T",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYTH2",
          "gene_hgnc_id": 9502,
          "hgvs_c": "c.200T>C",
          "hgvs_p": "p.Met67Thr",
          "transcript": "XM_047439683.1",
          "protein_id": "XP_047295639.1",
          "transcript_support_level": null,
          "aa_start": 67,
          "aa_end": null,
          "aa_length": 399,
          "cds_start": 200,
          "cds_end": null,
          "cds_length": 1200,
          "cdna_start": 339,
          "cdna_end": null,
          "cdna_length": 3782,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYTH2",
          "gene_hgnc_id": 9502,
          "hgvs_c": "n.200T>C",
          "hgvs_p": null,
          "transcript": "ENST00000391881.7",
          "protein_id": "ENSP00000375753.3",
          "transcript_support_level": 5,
          "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": 1546,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CYTH2",
          "gene_hgnc_id": 9502,
          "hgvs_c": "n.343T>C",
          "hgvs_p": null,
          "transcript": "ENST00000474049.1",
          "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": 576,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "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": "CYTH2",
          "gene_hgnc_id": 9502,
          "hgvs_c": "n.361T>C",
          "hgvs_p": null,
          "transcript": "ENST00000493260.5",
          "protein_id": null,
          "transcript_support_level": 5,
          "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": 4652,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 3,
          "intron_rank": 2,
          "intron_rank_end": null,
          "gene_symbol": "CYTH2",
          "gene_hgnc_id": 9502,
          "hgvs_c": "n.324+135T>C",
          "hgvs_p": null,
          "transcript": "ENST00000462117.5",
          "protein_id": null,
          "transcript_support_level": 4,
          "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": 540,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        }
      ],
      "gene_symbol": "CYTH2",
      "gene_hgnc_id": 9502,
      "dbsnp": "rs746755444",
      "frequency_reference_population": 0.000014250363,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 23,
      "gnomad_exomes_af": 0.000015049,
      "gnomad_genomes_af": 0.00000657454,
      "gnomad_exomes_ac": 22,
      "gnomad_genomes_ac": 1,
      "gnomad_exomes_homalt": 0,
      "gnomad_genomes_homalt": 0,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.2935199737548828,
      "computational_prediction_selected": "Benign",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0.029999999329447746,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.268,
      "revel_prediction": "Benign",
      "alphamissense_score": 0.2255,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.12,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": 6.235,
      "phylop100way_prediction": "Uncertain_significance",
      "spliceai_max_score": 0.03,
      "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": "BP4",
      "acmg_by_gene": [
        {
          "score": -1,
          "benign_score": 1,
          "pathogenic_score": 0,
          "criteria": [
            "BP4"
          ],
          "verdict": "Likely_benign",
          "transcript": "NM_004228.7",
          "gene_symbol": "CYTH2",
          "hgnc_id": 9502,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "",
          "hgvs_c": "c.200T>C",
          "hgvs_p": "p.Met67Thr"
        },
        {
          "score": -1,
          "benign_score": 1,
          "pathogenic_score": 0,
          "criteria": [
            "BP4"
          ],
          "verdict": "Likely_benign",
          "transcript": "ENST00000595676.1",
          "gene_symbol": "ENSG00000268465",
          "hgnc_id": null,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "",
          "hgvs_c": "c.152T>C",
          "hgvs_p": "p.Met51Thr"
        }
      ],
      "clinvar_disease": "not specified",
      "clinvar_classification": "Uncertain significance",
      "clinvar_review_status": "criteria provided, single submitter",
      "clinvar_submissions_summary": "US:1",
      "phenotype_combined": "not specified",
      "pathogenicity_classification_combined": "Uncertain significance",
      "custom_annotations": null
    }
  ],
  "message": null
}