← 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: 12-109451678-C-T (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "12",
      "pos": 109451678,
      "ref": "C",
      "alt": "T",
      "effect": "missense_variant",
      "transcript": "NM_001317395.2",
      "consequences": [
        {
          "aa_ref": "E",
          "aa_alt": "K",
          "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": "KCTD10",
          "gene_hgnc_id": 23236,
          "hgvs_c": "c.859G>A",
          "hgvs_p": "p.Glu287Lys",
          "transcript": "NM_031954.5",
          "protein_id": "NP_114160.1",
          "transcript_support_level": null,
          "aa_start": 287,
          "aa_end": null,
          "aa_length": 313,
          "cds_start": 859,
          "cds_end": null,
          "cds_length": 942,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000228495.11",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_031954.5"
        },
        {
          "aa_ref": "E",
          "aa_alt": "K",
          "canonical": true,
          "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": "KCTD10",
          "gene_hgnc_id": 23236,
          "hgvs_c": "c.859G>A",
          "hgvs_p": "p.Glu287Lys",
          "transcript": "ENST00000228495.11",
          "protein_id": "ENSP00000228495.6",
          "transcript_support_level": 1,
          "aa_start": 287,
          "aa_end": null,
          "aa_length": 313,
          "cds_start": 859,
          "cds_end": null,
          "cds_length": 942,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_031954.5",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000228495.11"
        },
        {
          "aa_ref": "E",
          "aa_alt": "K",
          "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": "KCTD10",
          "gene_hgnc_id": 23236,
          "hgvs_c": "c.781G>A",
          "hgvs_p": "p.Glu261Lys",
          "transcript": "ENST00000540411.5",
          "protein_id": "ENSP00000441672.1",
          "transcript_support_level": 1,
          "aa_start": 261,
          "aa_end": null,
          "aa_length": 287,
          "cds_start": 781,
          "cds_end": null,
          "cds_length": 864,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000540411.5"
        },
        {
          "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": "KCTD10",
          "gene_hgnc_id": 23236,
          "hgvs_c": "n.756G>A",
          "hgvs_p": null,
          "transcript": "ENST00000538161.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": "pseudogene",
          "feature": "ENST00000538161.5"
        },
        {
          "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": "KCTD10",
          "gene_hgnc_id": 23236,
          "hgvs_c": "n.3648G>A",
          "hgvs_p": null,
          "transcript": "ENST00000545759.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": "ENST00000545759.5"
        },
        {
          "aa_ref": "E",
          "aa_alt": "K",
          "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": "KCTD10",
          "gene_hgnc_id": 23236,
          "hgvs_c": "c.862G>A",
          "hgvs_p": "p.Glu288Lys",
          "transcript": "NM_001317395.2",
          "protein_id": "NP_001304324.1",
          "transcript_support_level": null,
          "aa_start": 288,
          "aa_end": null,
          "aa_length": 314,
          "cds_start": 862,
          "cds_end": null,
          "cds_length": 945,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001317395.2"
        },
        {
          "aa_ref": "E",
          "aa_alt": "K",
          "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": "KCTD10",
          "gene_hgnc_id": 23236,
          "hgvs_c": "c.796G>A",
          "hgvs_p": "p.Glu266Lys",
          "transcript": "ENST00000948235.1",
          "protein_id": "ENSP00000618294.1",
          "transcript_support_level": null,
          "aa_start": 266,
          "aa_end": null,
          "aa_length": 292,
          "cds_start": 796,
          "cds_end": null,
          "cds_length": 879,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000948235.1"
        },
        {
          "aa_ref": "E",
          "aa_alt": "K",
          "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": "KCTD10",
          "gene_hgnc_id": 23236,
          "hgvs_c": "c.790G>A",
          "hgvs_p": "p.Glu264Lys",
          "transcript": "NM_001317399.2",
          "protein_id": "NP_001304328.1",
          "transcript_support_level": null,
          "aa_start": 264,
          "aa_end": null,
          "aa_length": 290,
          "cds_start": 790,
          "cds_end": null,
          "cds_length": 873,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001317399.2"
        },
        {
          "aa_ref": "E",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "KCTD10",
          "gene_hgnc_id": 23236,
          "hgvs_c": "c.523G>A",
          "hgvs_p": "p.Glu175Lys",
          "transcript": "ENST00000927233.1",
          "protein_id": "ENSP00000597292.1",
          "transcript_support_level": null,
          "aa_start": 175,
          "aa_end": null,
          "aa_length": 201,
          "cds_start": 523,
          "cds_end": null,
          "cds_length": 606,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000927233.1"
        },
        {
          "aa_ref": "E",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "KCTD10",
          "gene_hgnc_id": 23236,
          "hgvs_c": "c.316G>A",
          "hgvs_p": "p.Glu106Lys",
          "transcript": "ENST00000540089.5",
          "protein_id": "ENSP00000439722.1",
          "transcript_support_level": 2,
          "aa_start": 106,
          "aa_end": null,
          "aa_length": 132,
          "cds_start": 316,
          "cds_end": null,
          "cds_length": 399,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000540089.5"
        },
        {
          "aa_ref": "E",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "KCTD10",
          "gene_hgnc_id": 23236,
          "hgvs_c": "c.316G>A",
          "hgvs_p": "p.Glu106Lys",
          "transcript": "ENST00000542954.5",
          "protein_id": "ENSP00000439481.1",
          "transcript_support_level": 5,
          "aa_start": 106,
          "aa_end": null,
          "aa_length": 120,
          "cds_start": 316,
          "cds_end": null,
          "cds_length": 364,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000542954.5"
        },
        {
          "aa_ref": "E",
          "aa_alt": "K",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "KCTD10",
          "gene_hgnc_id": 23236,
          "hgvs_c": "c.316G>A",
          "hgvs_p": "p.Glu106Lys",
          "transcript": "ENST00000535546.5",
          "protein_id": "ENSP00000441586.1",
          "transcript_support_level": 4,
          "aa_start": 106,
          "aa_end": null,
          "aa_length": 119,
          "cds_start": 316,
          "cds_end": null,
          "cds_length": 360,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000535546.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "KCTD10",
          "gene_hgnc_id": 23236,
          "hgvs_c": "c.*1809G>A",
          "hgvs_p": null,
          "transcript": "XM_047429638.1",
          "protein_id": "XP_047285594.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 296,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 891,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047429638.1"
        },
        {
          "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": "KCTD10",
          "gene_hgnc_id": 23236,
          "hgvs_c": "n.*455G>A",
          "hgvs_p": null,
          "transcript": "ENST00000440541.6",
          "protein_id": "ENSP00000390321.2",
          "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": "ENST00000440541.6"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "KCTD10",
          "gene_hgnc_id": 23236,
          "hgvs_c": "n.*2316G>A",
          "hgvs_p": null,
          "transcript": "ENST00000537165.5",
          "protein_id": "ENSP00000474497.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": "ENST00000537165.5"
        },
        {
          "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": "KCTD10",
          "gene_hgnc_id": 23236,
          "hgvs_c": "n.678G>A",
          "hgvs_p": null,
          "transcript": "ENST00000540402.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": "ENST00000540402.1"
        },
        {
          "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": "KCTD10",
          "gene_hgnc_id": 23236,
          "hgvs_c": "n.727G>A",
          "hgvs_p": null,
          "transcript": "NR_133897.2",
          "protein_id": null,
          "transcript_support_level": null,
          "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": "NR_133897.2"
        },
        {
          "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": "KCTD10",
          "gene_hgnc_id": 23236,
          "hgvs_c": "n.683G>A",
          "hgvs_p": null,
          "transcript": "NR_133898.2",
          "protein_id": null,
          "transcript_support_level": null,
          "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": "NR_133898.2"
        },
        {
          "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": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "KCTD10",
          "gene_hgnc_id": 23236,
          "hgvs_c": "n.*455G>A",
          "hgvs_p": null,
          "transcript": "ENST00000440541.6",
          "protein_id": "ENSP00000390321.2",
          "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": "ENST00000440541.6"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 7,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "KCTD10",
          "gene_hgnc_id": 23236,
          "hgvs_c": "n.*2316G>A",
          "hgvs_p": null,
          "transcript": "ENST00000537165.5",
          "protein_id": "ENSP00000474497.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": "ENST00000537165.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": 5,
          "intron_rank_end": null,
          "gene_symbol": "MYO1H",
          "gene_hgnc_id": 13879,
          "hgvs_c": "n.*99-3790C>T",
          "hgvs_p": null,
          "transcript": "ENST00000543960.1",
          "protein_id": "ENSP00000474025.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": "ENST00000543960.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "downstream_gene_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "KCTD10",
          "gene_hgnc_id": 23236,
          "hgvs_c": "c.*4G>A",
          "hgvs_p": null,
          "transcript": "ENST00000540355.5",
          "protein_id": "ENSP00000440008.1",
          "transcript_support_level": 5,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 103,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 312,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000540355.5"
        }
      ],
      "gene_symbol": "KCTD10",
      "gene_hgnc_id": 23236,
      "dbsnp": "rs982623580",
      "frequency_reference_population": 0.0000020526911,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 3,
      "gnomad_exomes_af": 0.00000205269,
      "gnomad_genomes_af": null,
      "gnomad_exomes_ac": 3,
      "gnomad_genomes_ac": null,
      "gnomad_exomes_homalt": 0,
      "gnomad_genomes_homalt": null,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.37894123792648315,
      "computational_prediction_selected": "Benign",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.088,
      "revel_prediction": "Benign",
      "alphamissense_score": 0.3461,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.25,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": 6.126,
      "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": 1,
      "acmg_classification": "Uncertain_significance",
      "acmg_criteria": "PM2,BP4",
      "acmg_by_gene": [
        {
          "score": 1,
          "benign_score": 1,
          "pathogenic_score": 2,
          "criteria": [
            "PM2",
            "BP4"
          ],
          "verdict": "Uncertain_significance",
          "transcript": "NM_001317395.2",
          "gene_symbol": "KCTD10",
          "hgnc_id": 23236,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AD",
          "hgvs_c": "c.862G>A",
          "hgvs_p": "p.Glu288Lys"
        },
        {
          "score": 1,
          "benign_score": 1,
          "pathogenic_score": 2,
          "criteria": [
            "PM2",
            "BP4"
          ],
          "verdict": "Uncertain_significance",
          "transcript": "ENST00000543960.1",
          "gene_symbol": "MYO1H",
          "hgnc_id": 13879,
          "effects": [
            "intron_variant"
          ],
          "inheritance_mode": "AR,AD",
          "hgvs_c": "n.*99-3790C>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
}