← 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: 22-30409456-G-A (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "22",
      "pos": 30409456,
      "ref": "G",
      "alt": "A",
      "effect": "missense_variant",
      "transcript": "NM_012429.5",
      "consequences": [
        {
          "aa_ref": "E",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC14L2",
          "gene_hgnc_id": 10699,
          "hgvs_c": "c.550G>A",
          "hgvs_p": "p.Glu184Lys",
          "transcript": "NM_012429.5",
          "protein_id": "NP_036561.1",
          "transcript_support_level": null,
          "aa_start": 184,
          "aa_end": null,
          "aa_length": 403,
          "cds_start": 550,
          "cds_end": null,
          "cds_length": 1212,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000615189.5",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_012429.5"
        },
        {
          "aa_ref": "E",
          "aa_alt": "K",
          "canonical": true,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC14L2",
          "gene_hgnc_id": 10699,
          "hgvs_c": "c.550G>A",
          "hgvs_p": "p.Glu184Lys",
          "transcript": "ENST00000615189.5",
          "protein_id": "ENSP00000478755.1",
          "transcript_support_level": 1,
          "aa_start": 184,
          "aa_end": null,
          "aa_length": 403,
          "cds_start": 550,
          "cds_end": null,
          "cds_length": 1212,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_012429.5",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000615189.5"
        },
        {
          "aa_ref": "E",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC14L2",
          "gene_hgnc_id": 10699,
          "hgvs_c": "c.550G>A",
          "hgvs_p": "p.Glu184Lys",
          "transcript": "ENST00000405717.7",
          "protein_id": "ENSP00000385186.3",
          "transcript_support_level": 1,
          "aa_start": 184,
          "aa_end": null,
          "aa_length": 392,
          "cds_start": 550,
          "cds_end": null,
          "cds_length": 1179,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000405717.7"
        },
        {
          "aa_ref": "E",
          "aa_alt": "K",
          "canonical": true,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ENSG00000249590",
          "gene_hgnc_id": null,
          "hgvs_c": "c.52G>A",
          "hgvs_p": "p.Glu18Lys",
          "transcript": "ENST00000439838.5",
          "protein_id": "ENSP00000415178.1",
          "transcript_support_level": 2,
          "aa_start": 18,
          "aa_end": null,
          "aa_length": 338,
          "cds_start": 52,
          "cds_end": null,
          "cds_length": 1017,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000439838.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": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC14L2",
          "gene_hgnc_id": 10699,
          "hgvs_c": "n.455G>A",
          "hgvs_p": null,
          "transcript": "ENST00000464335.5",
          "protein_id": null,
          "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": "retained_intron",
          "feature": "ENST00000464335.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC14L2",
          "gene_hgnc_id": 10699,
          "hgvs_c": "n.563G>A",
          "hgvs_p": null,
          "transcript": "ENST00000619483.4",
          "protein_id": null,
          "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": "retained_intron",
          "feature": "ENST00000619483.4"
        },
        {
          "aa_ref": "E",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC14L2",
          "gene_hgnc_id": 10699,
          "hgvs_c": "c.550G>A",
          "hgvs_p": "p.Glu184Lys",
          "transcript": "NM_033382.3",
          "protein_id": "NP_203740.1",
          "transcript_support_level": null,
          "aa_start": 184,
          "aa_end": null,
          "aa_length": 392,
          "cds_start": 550,
          "cds_end": null,
          "cds_length": 1179,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_033382.3"
        },
        {
          "aa_ref": "E",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC14L2",
          "gene_hgnc_id": 10699,
          "hgvs_c": "c.388G>A",
          "hgvs_p": "p.Glu130Lys",
          "transcript": "NM_001291932.2",
          "protein_id": "NP_001278861.1",
          "transcript_support_level": null,
          "aa_start": 130,
          "aa_end": null,
          "aa_length": 349,
          "cds_start": 388,
          "cds_end": null,
          "cds_length": 1050,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001291932.2"
        },
        {
          "aa_ref": "E",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC14L2",
          "gene_hgnc_id": 10699,
          "hgvs_c": "c.328G>A",
          "hgvs_p": "p.Glu110Lys",
          "transcript": "ENST00000617837.4",
          "protein_id": "ENSP00000482467.1",
          "transcript_support_level": 2,
          "aa_start": 110,
          "aa_end": null,
          "aa_length": 329,
          "cds_start": 328,
          "cds_end": null,
          "cds_length": 990,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000617837.4"
        },
        {
          "aa_ref": "E",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC14L2",
          "gene_hgnc_id": 10699,
          "hgvs_c": "c.301G>A",
          "hgvs_p": "p.Glu101Lys",
          "transcript": "NM_001204204.3",
          "protein_id": "NP_001191133.1",
          "transcript_support_level": null,
          "aa_start": 101,
          "aa_end": null,
          "aa_length": 320,
          "cds_start": 301,
          "cds_end": null,
          "cds_length": 963,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001204204.3"
        },
        {
          "aa_ref": "E",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC14L2",
          "gene_hgnc_id": 10699,
          "hgvs_c": "c.301G>A",
          "hgvs_p": "p.Glu101Lys",
          "transcript": "ENST00000402592.7",
          "protein_id": "ENSP00000383882.3",
          "transcript_support_level": 2,
          "aa_start": 101,
          "aa_end": null,
          "aa_length": 320,
          "cds_start": 301,
          "cds_end": null,
          "cds_length": 963,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000402592.7"
        },
        {
          "aa_ref": "E",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC14L2",
          "gene_hgnc_id": 10699,
          "hgvs_c": "c.388G>A",
          "hgvs_p": "p.Glu130Lys",
          "transcript": "ENST00000428195.5",
          "protein_id": "ENSP00000387781.1",
          "transcript_support_level": 5,
          "aa_start": 130,
          "aa_end": null,
          "aa_length": 202,
          "cds_start": 388,
          "cds_end": null,
          "cds_length": 609,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000428195.5"
        },
        {
          "aa_ref": "E",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ENSG00000249590",
          "gene_hgnc_id": null,
          "hgvs_c": "c.49G>A",
          "hgvs_p": "p.Glu17Lys",
          "transcript": "ENST00000439023.3",
          "protein_id": "ENSP00000400753.3",
          "transcript_support_level": 5,
          "aa_start": 17,
          "aa_end": null,
          "aa_length": 143,
          "cds_start": 49,
          "cds_end": null,
          "cds_length": 432,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000439023.3"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": 1,
          "intron_rank_end": null,
          "gene_symbol": "RNF215",
          "gene_hgnc_id": 33434,
          "hgvs_c": "c.-126+12205C>T",
          "hgvs_p": null,
          "transcript": "ENST00000431544.2",
          "protein_id": "ENSP00000404738.1",
          "transcript_support_level": 3,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 98,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 299,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000431544.2"
        },
        {
          "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": "SEC14L2",
          "gene_hgnc_id": 10699,
          "hgvs_c": "n.*392G>A",
          "hgvs_p": null,
          "transcript": "ENST00000452649.1",
          "protein_id": "ENSP00000388888.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": "ENST00000452649.1"
        },
        {
          "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": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "ENSG00000249590",
          "gene_hgnc_id": null,
          "hgvs_c": "n.58G>A",
          "hgvs_p": null,
          "transcript": "ENST00000454552.5",
          "protein_id": "ENSP00000416788.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": "ENST00000454552.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": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC14L2",
          "gene_hgnc_id": 10699,
          "hgvs_c": "n.292G>A",
          "hgvs_p": null,
          "transcript": "ENST00000483116.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": "retained_intron",
          "feature": "ENST00000483116.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": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC14L2",
          "gene_hgnc_id": 10699,
          "hgvs_c": "n.199G>A",
          "hgvs_p": null,
          "transcript": "ENST00000620251.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": "ENST00000620251.1"
        },
        {
          "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": "SEC14L2",
          "gene_hgnc_id": 10699,
          "hgvs_c": "n.*392G>A",
          "hgvs_p": null,
          "transcript": "ENST00000452649.1",
          "protein_id": "ENSP00000388888.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": "ENST00000452649.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "downstream_gene_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC14L2",
          "gene_hgnc_id": 10699,
          "hgvs_c": "n.*409G>A",
          "hgvs_p": null,
          "transcript": "ENST00000437022.5",
          "protein_id": "ENSP00000388719.1",
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000437022.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "downstream_gene_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SEC14L2",
          "gene_hgnc_id": 10699,
          "hgvs_c": "n.*174G>A",
          "hgvs_p": null,
          "transcript": "ENST00000459728.5",
          "protein_id": null,
          "transcript_support_level": 5,
          "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": "ENST00000459728.5"
        }
      ],
      "gene_symbol": "SEC14L2",
      "gene_hgnc_id": 10699,
      "dbsnp": "rs150971899",
      "frequency_reference_population": 0.00014993247,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 242,
      "gnomad_exomes_af": 0.000155282,
      "gnomad_genomes_af": 0.0000985532,
      "gnomad_exomes_ac": 227,
      "gnomad_genomes_ac": 15,
      "gnomad_exomes_homalt": 0,
      "gnomad_genomes_homalt": 0,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.9095553755760193,
      "computational_prediction_selected": "Pathogenic",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0.019999999552965164,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.94,
      "revel_prediction": "Pathogenic",
      "alphamissense_score": 0.971,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": 0.4,
      "bayesdelnoaf_prediction": "Pathogenic",
      "phylop100way_score": 9.521,
      "phylop100way_prediction": "Pathogenic",
      "spliceai_max_score": 0.02,
      "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": "PP3_Moderate",
      "acmg_by_gene": [
        {
          "score": 2,
          "benign_score": 0,
          "pathogenic_score": 2,
          "criteria": [
            "PP3_Moderate"
          ],
          "verdict": "Uncertain_significance",
          "transcript": "NM_012429.5",
          "gene_symbol": "SEC14L2",
          "hgnc_id": 10699,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AR",
          "hgvs_c": "c.550G>A",
          "hgvs_p": "p.Glu184Lys"
        },
        {
          "score": 2,
          "benign_score": 0,
          "pathogenic_score": 2,
          "criteria": [
            "PP3_Moderate"
          ],
          "verdict": "Uncertain_significance",
          "transcript": "ENST00000439838.5",
          "gene_symbol": "ENSG00000249590",
          "hgnc_id": null,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "",
          "hgvs_c": "c.52G>A",
          "hgvs_p": "p.Glu18Lys"
        },
        {
          "score": 2,
          "benign_score": 0,
          "pathogenic_score": 2,
          "criteria": [
            "PP3_Moderate"
          ],
          "verdict": "Uncertain_significance",
          "transcript": "ENST00000431544.2",
          "gene_symbol": "RNF215",
          "hgnc_id": 33434,
          "effects": [
            "intron_variant"
          ],
          "inheritance_mode": "AR",
          "hgvs_c": "c.-126+12205C>T",
          "hgvs_p": null
        }
      ],
      "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
}