← 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: 13-110647235-G-A (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "13",
      "pos": 110647235,
      "ref": "G",
      "alt": "A",
      "effect": "synonymous_variant",
      "transcript": "ENST00000257347.9",
      "consequences": [
        {
          "aa_ref": "I",
          "aa_alt": "I",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 11,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CARS2",
          "gene_hgnc_id": 25695,
          "hgvs_c": "c.1059C>T",
          "hgvs_p": "p.Ile353Ile",
          "transcript": "NM_024537.4",
          "protein_id": "NP_078813.1",
          "transcript_support_level": null,
          "aa_start": 353,
          "aa_end": null,
          "aa_length": 564,
          "cds_start": 1059,
          "cds_end": null,
          "cds_length": 1695,
          "cdna_start": 1082,
          "cdna_end": null,
          "cdna_length": 1838,
          "mane_select": "ENST00000257347.9",
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "I",
          "aa_alt": "I",
          "canonical": true,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 11,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CARS2",
          "gene_hgnc_id": 25695,
          "hgvs_c": "c.1059C>T",
          "hgvs_p": "p.Ile353Ile",
          "transcript": "ENST00000257347.9",
          "protein_id": "ENSP00000257347.4",
          "transcript_support_level": 1,
          "aa_start": 353,
          "aa_end": null,
          "aa_length": 564,
          "cds_start": 1059,
          "cds_end": null,
          "cds_length": 1695,
          "cdna_start": 1082,
          "cdna_end": null,
          "cdna_length": 1838,
          "mane_select": "NM_024537.4",
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "S",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CARS2",
          "gene_hgnc_id": 25695,
          "hgvs_c": "c.992C>T",
          "hgvs_p": "p.Ser331Leu",
          "transcript": "XM_017020742.3",
          "protein_id": "XP_016876231.1",
          "transcript_support_level": null,
          "aa_start": 331,
          "aa_end": null,
          "aa_length": 358,
          "cds_start": 992,
          "cds_end": null,
          "cds_length": 1077,
          "cdna_start": 1015,
          "cdna_end": null,
          "cdna_length": 1211,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "S",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CARS2",
          "gene_hgnc_id": 25695,
          "hgvs_c": "c.992C>T",
          "hgvs_p": "p.Ser331Leu",
          "transcript": "XM_047430608.1",
          "protein_id": "XP_047286564.1",
          "transcript_support_level": null,
          "aa_start": 331,
          "aa_end": null,
          "aa_length": 358,
          "cds_start": 992,
          "cds_end": null,
          "cds_length": 1077,
          "cdna_start": 1015,
          "cdna_end": null,
          "cdna_length": 1256,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "I",
          "aa_alt": "I",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 12,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CARS2",
          "gene_hgnc_id": 25695,
          "hgvs_c": "c.273C>T",
          "hgvs_p": "p.Ile91Ile",
          "transcript": "NM_001352252.2",
          "protein_id": "NP_001339181.1",
          "transcript_support_level": null,
          "aa_start": 91,
          "aa_end": null,
          "aa_length": 302,
          "cds_start": 273,
          "cds_end": null,
          "cds_length": 909,
          "cdna_start": 1193,
          "cdna_end": null,
          "cdna_length": 1949,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "I",
          "aa_alt": "I",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 11,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CARS2",
          "gene_hgnc_id": 25695,
          "hgvs_c": "c.1059C>T",
          "hgvs_p": "p.Ile353Ile",
          "transcript": "XM_047430605.1",
          "protein_id": "XP_047286561.1",
          "transcript_support_level": null,
          "aa_start": 353,
          "aa_end": null,
          "aa_length": 487,
          "cds_start": 1059,
          "cds_end": null,
          "cds_length": 1464,
          "cdna_start": 1082,
          "cdna_end": null,
          "cdna_length": 1751,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "I",
          "aa_alt": "I",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 11,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CARS2",
          "gene_hgnc_id": 25695,
          "hgvs_c": "c.720C>T",
          "hgvs_p": "p.Ile240Ile",
          "transcript": "XM_006719953.4",
          "protein_id": "XP_006720016.1",
          "transcript_support_level": null,
          "aa_start": 240,
          "aa_end": null,
          "aa_length": 451,
          "cds_start": 720,
          "cds_end": null,
          "cds_length": 1356,
          "cdna_start": 1221,
          "cdna_end": null,
          "cdna_length": 1977,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "I",
          "aa_alt": "I",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 10,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CARS2",
          "gene_hgnc_id": 25695,
          "hgvs_c": "c.714C>T",
          "hgvs_p": "p.Ile238Ile",
          "transcript": "XM_047430606.1",
          "protein_id": "XP_047286562.1",
          "transcript_support_level": null,
          "aa_start": 238,
          "aa_end": null,
          "aa_length": 449,
          "cds_start": 714,
          "cds_end": null,
          "cds_length": 1350,
          "cdna_start": 805,
          "cdna_end": null,
          "cdna_length": 1561,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "I",
          "aa_alt": "I",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 11,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CARS2",
          "gene_hgnc_id": 25695,
          "hgvs_c": "c.1059C>T",
          "hgvs_p": "p.Ile353Ile",
          "transcript": "XM_047430607.1",
          "protein_id": "XP_047286563.1",
          "transcript_support_level": null,
          "aa_start": 353,
          "aa_end": null,
          "aa_length": 446,
          "cds_start": 1059,
          "cds_end": null,
          "cds_length": 1341,
          "cdna_start": 1082,
          "cdna_end": null,
          "cdna_length": 1560,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "I",
          "aa_alt": "I",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CARS2",
          "gene_hgnc_id": 25695,
          "hgvs_c": "c.273C>T",
          "hgvs_p": "p.Ile91Ile",
          "transcript": "XM_047430609.1",
          "protein_id": "XP_047286565.1",
          "transcript_support_level": null,
          "aa_start": 91,
          "aa_end": null,
          "aa_length": 302,
          "cds_start": 273,
          "cds_end": null,
          "cds_length": 909,
          "cdna_start": 574,
          "cdna_end": null,
          "cdna_length": 1330,
          "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": 2,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CARS2",
          "gene_hgnc_id": 25695,
          "hgvs_c": "n.330C>T",
          "hgvs_p": null,
          "transcript": "ENST00000375781.9",
          "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": 2747,
          "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": 6,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CARS2",
          "gene_hgnc_id": 25695,
          "hgvs_c": "n.493C>T",
          "hgvs_p": null,
          "transcript": "ENST00000481787.6",
          "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": 1223,
          "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": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CARS2",
          "gene_hgnc_id": 25695,
          "hgvs_c": "n.138C>T",
          "hgvs_p": null,
          "transcript": "ENST00000487253.6",
          "protein_id": "ENSP00000438267.1",
          "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": 844,
          "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": 10,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CARS2",
          "gene_hgnc_id": 25695,
          "hgvs_c": "n.1251C>T",
          "hgvs_p": null,
          "transcript": "ENST00000535398.5",
          "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": 1878,
          "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": "CARS2",
          "gene_hgnc_id": 25695,
          "hgvs_c": "n.549C>T",
          "hgvs_p": null,
          "transcript": "ENST00000535516.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": 2313,
          "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": 4,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CARS2",
          "gene_hgnc_id": 25695,
          "hgvs_c": "n.343C>T",
          "hgvs_p": null,
          "transcript": "ENST00000535615.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": 711,
          "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": 2,
          "exon_rank_end": null,
          "exon_count": 2,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CARS2",
          "gene_hgnc_id": 25695,
          "hgvs_c": "n.183C>T",
          "hgvs_p": null,
          "transcript": "ENST00000537386.1",
          "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": 739,
          "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": 2,
          "exon_rank_end": null,
          "exon_count": 2,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CARS2",
          "gene_hgnc_id": 25695,
          "hgvs_c": "n.179C>T",
          "hgvs_p": null,
          "transcript": "ENST00000537404.1",
          "protein_id": null,
          "transcript_support_level": 3,
          "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": 553,
          "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": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CARS2",
          "gene_hgnc_id": 25695,
          "hgvs_c": "n.1343C>T",
          "hgvs_p": null,
          "transcript": "ENST00000537802.5",
          "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": 3225,
          "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": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CARS2",
          "gene_hgnc_id": 25695,
          "hgvs_c": "n.483C>T",
          "hgvs_p": null,
          "transcript": "ENST00000540006.5",
          "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": 1485,
          "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": 3,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CARS2",
          "gene_hgnc_id": 25695,
          "hgvs_c": "n.283C>T",
          "hgvs_p": null,
          "transcript": "ENST00000541362.5",
          "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": 1051,
          "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": 6,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CARS2",
          "gene_hgnc_id": 25695,
          "hgvs_c": "n.575C>T",
          "hgvs_p": null,
          "transcript": "ENST00000543487.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": 870,
          "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": 4,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CARS2",
          "gene_hgnc_id": 25695,
          "hgvs_c": "n.404C>T",
          "hgvs_p": null,
          "transcript": "ENST00000545506.5",
          "protein_id": null,
          "transcript_support_level": 3,
          "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": 788,
          "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": 12,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CARS2",
          "gene_hgnc_id": 25695,
          "hgvs_c": "n.1030C>T",
          "hgvs_p": null,
          "transcript": "NR_147941.1",
          "protein_id": null,
          "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": 1906,
          "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": 12,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CARS2",
          "gene_hgnc_id": 25695,
          "hgvs_c": "n.1240C>T",
          "hgvs_p": null,
          "transcript": "NR_147942.2",
          "protein_id": null,
          "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": 2234,
          "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": 11,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CARS2",
          "gene_hgnc_id": 25695,
          "hgvs_c": "n.1082C>T",
          "hgvs_p": null,
          "transcript": "XR_001749667.3",
          "protein_id": null,
          "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": 2205,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "upstream_gene_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CARS2",
          "gene_hgnc_id": 25695,
          "hgvs_c": "c.-121C>T",
          "hgvs_p": null,
          "transcript": "ENST00000620794.1",
          "protein_id": "ENSP00000480523.1",
          "transcript_support_level": 3,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 89,
          "cds_start": -4,
          "cds_end": null,
          "cds_length": 270,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": 668,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        }
      ],
      "gene_symbol": "CARS2",
      "gene_hgnc_id": 25695,
      "dbsnp": "rs200079151",
      "frequency_reference_population": 0.00013397625,
      "hom_count_reference_population": 1,
      "allele_count_reference_population": 216,
      "gnomad_exomes_af": 0.00013289,
      "gnomad_genomes_af": 0.000144387,
      "gnomad_exomes_ac": 194,
      "gnomad_genomes_ac": 22,
      "gnomad_exomes_homalt": 1,
      "gnomad_genomes_homalt": 0,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": -0.6100000143051147,
      "computational_prediction_selected": "Benign",
      "computational_source_selected": "BayesDel_noAF",
      "splice_score_selected": 0,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": null,
      "revel_prediction": null,
      "alphamissense_score": null,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.61,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": -1.087,
      "phylop100way_prediction": "Benign",
      "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": -7,
      "acmg_classification": "Benign",
      "acmg_criteria": "BP4_Strong,BP6_Moderate,BP7",
      "acmg_by_gene": [
        {
          "score": -7,
          "benign_score": 7,
          "pathogenic_score": 0,
          "criteria": [
            "BP4_Strong",
            "BP6_Moderate",
            "BP7"
          ],
          "verdict": "Benign",
          "transcript": "ENST00000257347.9",
          "gene_symbol": "CARS2",
          "hgnc_id": 25695,
          "effects": [
            "synonymous_variant"
          ],
          "inheritance_mode": "AR",
          "hgvs_c": "c.1059C>T",
          "hgvs_p": "p.Ile353Ile"
        }
      ],
      "clinvar_disease": "CARS2-related disorder,Combined oxidative phosphorylation defect type 27",
      "clinvar_classification": "Benign",
      "clinvar_review_status": "criteria provided, single submitter",
      "clinvar_submissions_summary": "B:1",
      "phenotype_combined": "Combined oxidative phosphorylation defect type 27|CARS2-related disorder",
      "pathogenicity_classification_combined": "Benign",
      "custom_annotations": null
    }
  ],
  "message": null
}