← 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: 11-4123205-C-T (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "11",
      "pos": 4123205,
      "ref": "C",
      "alt": "T",
      "effect": "missense_variant",
      "transcript": "NM_001033.5",
      "consequences": [
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 12,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RRM1",
          "gene_hgnc_id": 10451,
          "hgvs_c": "c.1141C>T",
          "hgvs_p": "p.Arg381Cys",
          "transcript": "NM_001033.5",
          "protein_id": "NP_001024.1",
          "transcript_support_level": null,
          "aa_start": 381,
          "aa_end": null,
          "aa_length": 792,
          "cds_start": 1141,
          "cds_end": null,
          "cds_length": 2379,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000300738.10",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001033.5"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": true,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 12,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RRM1",
          "gene_hgnc_id": 10451,
          "hgvs_c": "c.1141C>T",
          "hgvs_p": "p.Arg381Cys",
          "transcript": "ENST00000300738.10",
          "protein_id": "ENSP00000300738.5",
          "transcript_support_level": 1,
          "aa_start": 381,
          "aa_end": null,
          "aa_length": 792,
          "cds_start": 1141,
          "cds_end": null,
          "cds_length": 2379,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_001033.5",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000300738.10"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 12,
          "exon_rank_end": null,
          "exon_count": 19,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RRM1",
          "gene_hgnc_id": 10451,
          "hgvs_c": "c.1072C>T",
          "hgvs_p": "p.Arg358Cys",
          "transcript": "ENST00000854928.1",
          "protein_id": "ENSP00000524987.1",
          "transcript_support_level": null,
          "aa_start": 358,
          "aa_end": null,
          "aa_length": 769,
          "cds_start": 1072,
          "cds_end": null,
          "cds_length": 2310,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854928.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 12,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RRM1",
          "gene_hgnc_id": 10451,
          "hgvs_c": "c.1141C>T",
          "hgvs_p": "p.Arg381Cys",
          "transcript": "ENST00000854929.1",
          "protein_id": "ENSP00000524988.1",
          "transcript_support_level": null,
          "aa_start": 381,
          "aa_end": null,
          "aa_length": 718,
          "cds_start": 1141,
          "cds_end": null,
          "cds_length": 2157,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000854929.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 11,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RRM1",
          "gene_hgnc_id": 10451,
          "hgvs_c": "c.850C>T",
          "hgvs_p": "p.Arg284Cys",
          "transcript": "NM_001318064.1",
          "protein_id": "NP_001304993.1",
          "transcript_support_level": null,
          "aa_start": 284,
          "aa_end": null,
          "aa_length": 695,
          "cds_start": 850,
          "cds_end": null,
          "cds_length": 2088,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001318064.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RRM1",
          "gene_hgnc_id": 10451,
          "hgvs_c": "c.475C>T",
          "hgvs_p": "p.Arg159Cys",
          "transcript": "NM_001330193.1",
          "protein_id": "NP_001317122.1",
          "transcript_support_level": null,
          "aa_start": 159,
          "aa_end": null,
          "aa_length": 570,
          "cds_start": 475,
          "cds_end": null,
          "cds_length": 1713,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001330193.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RRM1",
          "gene_hgnc_id": 10451,
          "hgvs_c": "c.475C>T",
          "hgvs_p": "p.Arg159Cys",
          "transcript": "ENST00000534285.5",
          "protein_id": "ENSP00000431464.1",
          "transcript_support_level": 5,
          "aa_start": 159,
          "aa_end": null,
          "aa_length": 570,
          "cds_start": 475,
          "cds_end": null,
          "cds_length": 1713,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000534285.5"
        },
        {
          "aa_ref": "R",
          "aa_alt": "C",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RRM1",
          "gene_hgnc_id": 10451,
          "hgvs_c": "c.127C>T",
          "hgvs_p": "p.Arg43Cys",
          "transcript": "NM_001318065.1",
          "protein_id": "NP_001304994.1",
          "transcript_support_level": null,
          "aa_start": 43,
          "aa_end": null,
          "aa_length": 454,
          "cds_start": 127,
          "cds_end": null,
          "cds_length": 1365,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001318065.1"
        },
        {
          "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": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RRM1",
          "gene_hgnc_id": 10451,
          "hgvs_c": "n.449C>T",
          "hgvs_p": null,
          "transcript": "ENST00000526304.5",
          "protein_id": null,
          "transcript_support_level": 4,
          "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": "pseudogene",
          "feature": "ENST00000526304.5"
        },
        {
          "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": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RRM1",
          "gene_hgnc_id": 10451,
          "hgvs_c": "n.*212C>T",
          "hgvs_p": null,
          "transcript": "ENST00000528442.5",
          "protein_id": "ENSP00000432555.1",
          "transcript_support_level": 3,
          "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": "ENST00000528442.5"
        },
        {
          "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": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RRM1",
          "gene_hgnc_id": 10451,
          "hgvs_c": "n.513C>T",
          "hgvs_p": null,
          "transcript": "ENST00000528470.5",
          "protein_id": null,
          "transcript_support_level": 3,
          "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": "pseudogene",
          "feature": "ENST00000528470.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 3,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RRM1",
          "gene_hgnc_id": 10451,
          "hgvs_c": "n.135C>T",
          "hgvs_p": null,
          "transcript": "ENST00000529109.1",
          "protein_id": null,
          "transcript_support_level": 2,
          "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": "retained_intron",
          "feature": "ENST00000529109.1"
        },
        {
          "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": "RRM1",
          "gene_hgnc_id": 10451,
          "hgvs_c": "n.194C>T",
          "hgvs_p": null,
          "transcript": "ENST00000531591.5",
          "protein_id": null,
          "transcript_support_level": 2,
          "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": "retained_intron",
          "feature": "ENST00000531591.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 13,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RRM1",
          "gene_hgnc_id": 10451,
          "hgvs_c": "n.*1017C>T",
          "hgvs_p": null,
          "transcript": "ENST00000532170.5",
          "protein_id": "ENSP00000435656.1",
          "transcript_support_level": 2,
          "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": "ENST00000532170.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 11,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RRM1",
          "gene_hgnc_id": 10451,
          "hgvs_c": "n.*849C>T",
          "hgvs_p": null,
          "transcript": "ENST00000533349.5",
          "protein_id": "ENSP00000434069.1",
          "transcript_support_level": 2,
          "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": "ENST00000533349.5"
        },
        {
          "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": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RRM1",
          "gene_hgnc_id": 10451,
          "hgvs_c": "n.*289C>T",
          "hgvs_p": null,
          "transcript": "ENST00000533495.5",
          "protein_id": "ENSP00000436377.1",
          "transcript_support_level": 2,
          "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": "ENST00000533495.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": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RRM1",
          "gene_hgnc_id": 10451,
          "hgvs_c": "n.*212C>T",
          "hgvs_p": null,
          "transcript": "ENST00000528442.5",
          "protein_id": "ENSP00000432555.1",
          "transcript_support_level": 3,
          "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": "ENST00000528442.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 13,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RRM1",
          "gene_hgnc_id": 10451,
          "hgvs_c": "n.*1017C>T",
          "hgvs_p": null,
          "transcript": "ENST00000532170.5",
          "protein_id": "ENSP00000435656.1",
          "transcript_support_level": 2,
          "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": "ENST00000532170.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 11,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RRM1",
          "gene_hgnc_id": 10451,
          "hgvs_c": "n.*849C>T",
          "hgvs_p": null,
          "transcript": "ENST00000533349.5",
          "protein_id": "ENSP00000434069.1",
          "transcript_support_level": 2,
          "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": "ENST00000533349.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": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "RRM1",
          "gene_hgnc_id": 10451,
          "hgvs_c": "n.*289C>T",
          "hgvs_p": null,
          "transcript": "ENST00000533495.5",
          "protein_id": "ENSP00000436377.1",
          "transcript_support_level": 2,
          "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": "ENST00000533495.5"
        }
      ],
      "gene_symbol": "RRM1",
      "gene_hgnc_id": 10451,
      "dbsnp": "rs141634151",
      "frequency_reference_population": 0.000040278253,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 65,
      "gnomad_exomes_af": 0.0000362567,
      "gnomad_genomes_af": 0.0000789609,
      "gnomad_exomes_ac": 53,
      "gnomad_genomes_ac": 12,
      "gnomad_exomes_homalt": 0,
      "gnomad_genomes_homalt": 0,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.19884562492370605,
      "computational_prediction_selected": "Benign",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.273,
      "revel_prediction": "Benign",
      "alphamissense_score": 0.3468,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.22,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": 5.432,
      "phylop100way_prediction": "Uncertain_significance",
      "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": 2,
      "acmg_classification": "Uncertain_significance",
      "acmg_criteria": "PM5,PP5,BP4",
      "acmg_by_gene": [
        {
          "score": 2,
          "benign_score": 1,
          "pathogenic_score": 3,
          "criteria": [
            "PM5",
            "PP5",
            "BP4"
          ],
          "verdict": "Uncertain_significance",
          "transcript": "NM_001033.5",
          "gene_symbol": "RRM1",
          "hgnc_id": 10451,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AR,AD",
          "hgvs_c": "c.1141C>T",
          "hgvs_p": "p.Arg381Cys"
        }
      ],
      "clinvar_disease": " autosomal recessive 6,Progressive external ophthalmoplegia with mitochondrial dna deletions",
      "clinvar_classification": "Pathogenic",
      "clinvar_review_status": "no assertion criteria provided",
      "clinvar_submissions_summary": "null",
      "phenotype_combined": "Progressive external ophthalmoplegia with mitochondrial dna deletions, autosomal recessive 6",
      "pathogenicity_classification_combined": "Pathogenic",
      "custom_annotations": null
    }
  ],
  "message": null
}