← 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: 8-85333547-G-A (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "8",
      "pos": 85333547,
      "ref": "G",
      "alt": "A",
      "effect": "missense_variant",
      "transcript": "ENST00000523022.6",
      "consequences": [
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CA1",
          "gene_hgnc_id": 1368,
          "hgvs_c": "c.428C>T",
          "hgvs_p": "p.Ala143Val",
          "transcript": "NM_001128831.4",
          "protein_id": "NP_001122303.1",
          "transcript_support_level": null,
          "aa_start": 143,
          "aa_end": null,
          "aa_length": 261,
          "cds_start": 428,
          "cds_end": null,
          "cds_length": 786,
          "cdna_start": 520,
          "cdna_end": null,
          "cdna_length": 1830,
          "mane_select": "ENST00000523022.6",
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": true,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CA1",
          "gene_hgnc_id": 1368,
          "hgvs_c": "c.428C>T",
          "hgvs_p": "p.Ala143Val",
          "transcript": "ENST00000523022.6",
          "protein_id": "ENSP00000429798.1",
          "transcript_support_level": 1,
          "aa_start": 143,
          "aa_end": null,
          "aa_length": 261,
          "cds_start": 428,
          "cds_end": null,
          "cds_length": 786,
          "cdna_start": 520,
          "cdna_end": null,
          "cdna_length": 1830,
          "mane_select": "NM_001128831.4",
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CA1",
          "gene_hgnc_id": 1368,
          "hgvs_c": "c.428C>T",
          "hgvs_p": "p.Ala143Val",
          "transcript": "ENST00000523953.5",
          "protein_id": "ENSP00000430656.1",
          "transcript_support_level": 1,
          "aa_start": 143,
          "aa_end": null,
          "aa_length": 261,
          "cds_start": 428,
          "cds_end": null,
          "cds_length": 786,
          "cdna_start": 1475,
          "cdna_end": null,
          "cdna_length": 2785,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CA1",
          "gene_hgnc_id": 1368,
          "hgvs_c": "c.428C>T",
          "hgvs_p": "p.Ala143Val",
          "transcript": "ENST00000517618.5",
          "protein_id": "ENSP00000430861.1",
          "transcript_support_level": 1,
          "aa_start": 143,
          "aa_end": null,
          "aa_length": 250,
          "cds_start": 428,
          "cds_end": null,
          "cds_length": 753,
          "cdna_start": 507,
          "cdna_end": null,
          "cdna_length": 832,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CA1",
          "gene_hgnc_id": 1368,
          "hgvs_c": "c.428C>T",
          "hgvs_p": "p.Ala143Val",
          "transcript": "NM_001128829.4",
          "protein_id": "NP_001122301.1",
          "transcript_support_level": null,
          "aa_start": 143,
          "aa_end": null,
          "aa_length": 261,
          "cds_start": 428,
          "cds_end": null,
          "cds_length": 786,
          "cdna_start": 595,
          "cdna_end": null,
          "cdna_length": 1905,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CA1",
          "gene_hgnc_id": 1368,
          "hgvs_c": "c.428C>T",
          "hgvs_p": "p.Ala143Val",
          "transcript": "NM_001128830.4",
          "protein_id": "NP_001122302.1",
          "transcript_support_level": null,
          "aa_start": 143,
          "aa_end": null,
          "aa_length": 261,
          "cds_start": 428,
          "cds_end": null,
          "cds_length": 786,
          "cdna_start": 597,
          "cdna_end": null,
          "cdna_length": 1907,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CA1",
          "gene_hgnc_id": 1368,
          "hgvs_c": "c.428C>T",
          "hgvs_p": "p.Ala143Val",
          "transcript": "NM_001164830.2",
          "protein_id": "NP_001158302.1",
          "transcript_support_level": null,
          "aa_start": 143,
          "aa_end": null,
          "aa_length": 261,
          "cds_start": 428,
          "cds_end": null,
          "cds_length": 786,
          "cdna_start": 507,
          "cdna_end": null,
          "cdna_length": 1817,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CA1",
          "gene_hgnc_id": 1368,
          "hgvs_c": "c.428C>T",
          "hgvs_p": "p.Ala143Val",
          "transcript": "NM_001738.5",
          "protein_id": "NP_001729.1",
          "transcript_support_level": null,
          "aa_start": 143,
          "aa_end": null,
          "aa_length": 261,
          "cds_start": 428,
          "cds_end": null,
          "cds_length": 786,
          "cdna_start": 574,
          "cdna_end": null,
          "cdna_length": 1884,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CA1",
          "gene_hgnc_id": 1368,
          "hgvs_c": "c.428C>T",
          "hgvs_p": "p.Ala143Val",
          "transcript": "ENST00000431316.3",
          "protein_id": "ENSP00000392338.1",
          "transcript_support_level": 5,
          "aa_start": 143,
          "aa_end": null,
          "aa_length": 261,
          "cds_start": 428,
          "cds_end": null,
          "cds_length": 786,
          "cdna_start": 543,
          "cdna_end": null,
          "cdna_length": 1232,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CA1",
          "gene_hgnc_id": 1368,
          "hgvs_c": "c.428C>T",
          "hgvs_p": "p.Ala143Val",
          "transcript": "ENST00000542576.5",
          "protein_id": "ENSP00000443517.1",
          "transcript_support_level": 5,
          "aa_start": 143,
          "aa_end": null,
          "aa_length": 261,
          "cds_start": 428,
          "cds_end": null,
          "cds_length": 786,
          "cdna_start": 547,
          "cdna_end": null,
          "cdna_length": 1236,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CA1",
          "gene_hgnc_id": 1368,
          "hgvs_c": "c.230C>T",
          "hgvs_p": "p.Ala77Val",
          "transcript": "NM_001291967.2",
          "protein_id": "NP_001278896.1",
          "transcript_support_level": null,
          "aa_start": 77,
          "aa_end": null,
          "aa_length": 195,
          "cds_start": 230,
          "cds_end": null,
          "cds_length": 588,
          "cdna_start": 322,
          "cdna_end": null,
          "cdna_length": 1632,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CA1",
          "gene_hgnc_id": 1368,
          "hgvs_c": "c.230C>T",
          "hgvs_p": "p.Ala77Val",
          "transcript": "ENST00000524324.5",
          "protein_id": "ENSP00000428923.1",
          "transcript_support_level": 2,
          "aa_start": 77,
          "aa_end": null,
          "aa_length": 193,
          "cds_start": 230,
          "cds_end": null,
          "cds_length": 583,
          "cdna_start": 322,
          "cdna_end": null,
          "cdna_length": 675,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CA1",
          "gene_hgnc_id": 1368,
          "hgvs_c": "c.236C>T",
          "hgvs_p": "p.Ala79Val",
          "transcript": "ENST00000521679.5",
          "protein_id": "ENSP00000429300.1",
          "transcript_support_level": 3,
          "aa_start": 79,
          "aa_end": null,
          "aa_length": 177,
          "cds_start": 236,
          "cds_end": null,
          "cds_length": 534,
          "cdna_start": 237,
          "cdna_end": null,
          "cdna_length": 606,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CA1",
          "gene_hgnc_id": 1368,
          "hgvs_c": "c.428C>T",
          "hgvs_p": "p.Ala143Val",
          "transcript": "ENST00000517590.5",
          "protein_id": "ENSP00000429843.1",
          "transcript_support_level": 5,
          "aa_start": 143,
          "aa_end": null,
          "aa_length": 174,
          "cds_start": 428,
          "cds_end": null,
          "cds_length": 527,
          "cdna_start": 597,
          "cdna_end": null,
          "cdna_length": 696,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CA1",
          "gene_hgnc_id": 1368,
          "hgvs_c": "c.428C>T",
          "hgvs_p": "p.Ala143Val",
          "transcript": "ENST00000521846.5",
          "protein_id": "ENSP00000430471.1",
          "transcript_support_level": 3,
          "aa_start": 143,
          "aa_end": null,
          "aa_length": 148,
          "cds_start": 428,
          "cds_end": null,
          "cds_length": 448,
          "cdna_start": 646,
          "cdna_end": null,
          "cdna_length": 666,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CA1",
          "gene_hgnc_id": 1368,
          "hgvs_c": "c.89C>T",
          "hgvs_p": "p.Ala30Val",
          "transcript": "NM_001291968.2",
          "protein_id": "NP_001278897.1",
          "transcript_support_level": null,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 148,
          "cds_start": 89,
          "cds_end": null,
          "cds_length": 447,
          "cdna_start": 203,
          "cdna_end": null,
          "cdna_length": 1513,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CA1",
          "gene_hgnc_id": 1368,
          "hgvs_c": "c.428C>T",
          "hgvs_p": "p.Ala143Val",
          "transcript": "ENST00000522579.5",
          "protein_id": "ENSP00000427852.1",
          "transcript_support_level": 3,
          "aa_start": 143,
          "aa_end": null,
          "aa_length": 148,
          "cds_start": 428,
          "cds_end": null,
          "cds_length": 447,
          "cdna_start": 595,
          "cdna_end": null,
          "cdna_length": 614,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CA1",
          "gene_hgnc_id": 1368,
          "hgvs_c": "c.428C>T",
          "hgvs_p": "p.Ala143Val",
          "transcript": "ENST00000522814.5",
          "protein_id": "ENSP00000430737.1",
          "transcript_support_level": 3,
          "aa_start": 143,
          "aa_end": null,
          "aa_length": 147,
          "cds_start": 428,
          "cds_end": null,
          "cds_length": 445,
          "cdna_start": 601,
          "cdna_end": null,
          "cdna_length": 618,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CA1",
          "gene_hgnc_id": 1368,
          "hgvs_c": "c.89C>T",
          "hgvs_p": "p.Ala30Val",
          "transcript": "ENST00000519991.5",
          "protein_id": "ENSP00000430543.1",
          "transcript_support_level": 2,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 136,
          "cds_start": 89,
          "cds_end": null,
          "cds_length": 413,
          "cdna_start": 203,
          "cdna_end": null,
          "cdna_length": 527,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CA1",
          "gene_hgnc_id": 1368,
          "hgvs_c": "c.89C>T",
          "hgvs_p": "p.Ala30Val",
          "transcript": "ENST00000522389.5",
          "protein_id": "ENSP00000427773.1",
          "transcript_support_level": 3,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 127,
          "cds_start": 89,
          "cds_end": null,
          "cds_length": 384,
          "cdna_start": 135,
          "cdna_end": null,
          "cdna_length": 551,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CA1",
          "gene_hgnc_id": 1368,
          "hgvs_c": "c.89C>T",
          "hgvs_p": "p.Ala30Val",
          "transcript": "ENST00000626824.1",
          "protein_id": "ENSP00000486171.1",
          "transcript_support_level": 5,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 127,
          "cds_start": 89,
          "cds_end": null,
          "cds_length": 384,
          "cdna_start": 1158,
          "cdna_end": null,
          "cdna_length": 2405,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "A",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CA1",
          "gene_hgnc_id": 1368,
          "hgvs_c": "c.89C>T",
          "hgvs_p": "p.Ala30Val",
          "transcript": "ENST00000520663.5",
          "protein_id": "ENSP00000430571.1",
          "transcript_support_level": 3,
          "aa_start": 30,
          "aa_end": null,
          "aa_length": 86,
          "cds_start": 89,
          "cds_end": null,
          "cds_length": 263,
          "cdna_start": 280,
          "cdna_end": null,
          "cdna_length": 454,
          "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": "CA1",
          "gene_hgnc_id": 1368,
          "hgvs_c": "n.*233C>T",
          "hgvs_p": null,
          "transcript": "ENST00000517429.5",
          "protein_id": "ENSP00000430710.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": 652,
          "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": 3,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CA1",
          "gene_hgnc_id": 1368,
          "hgvs_c": "n.151C>T",
          "hgvs_p": null,
          "transcript": "ENST00000518233.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": 355,
          "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": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CA1",
          "gene_hgnc_id": 1368,
          "hgvs_c": "n.636C>T",
          "hgvs_p": null,
          "transcript": "ENST00000518341.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": 655,
          "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": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CA1",
          "gene_hgnc_id": 1368,
          "hgvs_c": "n.342C>T",
          "hgvs_p": null,
          "transcript": "ENST00000523712.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": 574,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 6,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "CA1",
          "gene_hgnc_id": 1368,
          "hgvs_c": "n.*233C>T",
          "hgvs_p": null,
          "transcript": "ENST00000517429.5",
          "protein_id": "ENSP00000430710.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": 652,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        }
      ],
      "gene_symbol": "CA1",
      "gene_hgnc_id": 1368,
      "dbsnp": "rs7821248",
      "frequency_reference_population": 0.0051016165,
      "hom_count_reference_population": 340,
      "allele_count_reference_population": 8222,
      "gnomad_exomes_af": 0.00283406,
      "gnomad_genomes_af": 0.026836,
      "gnomad_exomes_ac": 4136,
      "gnomad_genomes_ac": 4086,
      "gnomad_exomes_homalt": 156,
      "gnomad_genomes_homalt": 184,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.006014227867126465,
      "computational_prediction_selected": "Benign",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0.009999999776482582,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.374,
      "revel_prediction": "Uncertain_significance",
      "alphamissense_score": 0.3164,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.14,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": 3.385,
      "phylop100way_prediction": "Benign",
      "spliceai_max_score": 0.01,
      "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": -20,
      "acmg_classification": "Benign",
      "acmg_criteria": "BP4_Strong,BP6_Very_Strong,BA1",
      "acmg_by_gene": [
        {
          "score": -20,
          "benign_score": 20,
          "pathogenic_score": 0,
          "criteria": [
            "BP4_Strong",
            "BP6_Very_Strong",
            "BA1"
          ],
          "verdict": "Benign",
          "transcript": "ENST00000523022.6",
          "gene_symbol": "CA1",
          "hgnc_id": 1368,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AR",
          "hgvs_c": "c.428C>T",
          "hgvs_p": "p.Ala143Val"
        }
      ],
      "clinvar_disease": "not provided",
      "clinvar_classification": "Benign",
      "clinvar_review_status": "criteria provided, multiple submitters, no conflicts",
      "clinvar_submissions_summary": "B:2",
      "phenotype_combined": "not provided",
      "pathogenicity_classification_combined": "Benign",
      "custom_annotations": null
    }
  ],
  "message": null
}