← 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: 19-55274422-C-T (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "19",
      "pos": 55274422,
      "ref": "C",
      "alt": "T",
      "effect": "missense_variant",
      "transcript": "NM_001297600.2",
      "consequences": [
        {
          "aa_ref": "V",
          "aa_alt": "I",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HSPBP1",
          "gene_hgnc_id": 24989,
          "hgvs_c": "c.616G>A",
          "hgvs_p": "p.Val206Ile",
          "transcript": "NM_012267.5",
          "protein_id": "NP_036399.3",
          "transcript_support_level": null,
          "aa_start": 206,
          "aa_end": null,
          "aa_length": 359,
          "cds_start": 616,
          "cds_end": null,
          "cds_length": 1080,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000433386.7",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_012267.5"
        },
        {
          "aa_ref": "V",
          "aa_alt": "I",
          "canonical": true,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HSPBP1",
          "gene_hgnc_id": 24989,
          "hgvs_c": "c.616G>A",
          "hgvs_p": "p.Val206Ile",
          "transcript": "ENST00000433386.7",
          "protein_id": "ENSP00000398244.1",
          "transcript_support_level": 1,
          "aa_start": 206,
          "aa_end": null,
          "aa_length": 359,
          "cds_start": 616,
          "cds_end": null,
          "cds_length": 1080,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_012267.5",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000433386.7"
        },
        {
          "aa_ref": "V",
          "aa_alt": "I",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HSPBP1",
          "gene_hgnc_id": 24989,
          "hgvs_c": "c.616G>A",
          "hgvs_p": "p.Val206Ile",
          "transcript": "ENST00000255631.9",
          "protein_id": "ENSP00000255631.4",
          "transcript_support_level": 1,
          "aa_start": 206,
          "aa_end": null,
          "aa_length": 359,
          "cds_start": 616,
          "cds_end": null,
          "cds_length": 1080,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000255631.9"
        },
        {
          "aa_ref": "V",
          "aa_alt": "I",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HSPBP1",
          "gene_hgnc_id": 24989,
          "hgvs_c": "c.616G>A",
          "hgvs_p": "p.Val206Ile",
          "transcript": "ENST00000587922.5",
          "protein_id": "ENSP00000467574.1",
          "transcript_support_level": 1,
          "aa_start": 206,
          "aa_end": null,
          "aa_length": 359,
          "cds_start": 616,
          "cds_end": null,
          "cds_length": 1080,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000587922.5"
        },
        {
          "aa_ref": "V",
          "aa_alt": "I",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HSPBP1",
          "gene_hgnc_id": 24989,
          "hgvs_c": "c.754G>A",
          "hgvs_p": "p.Val252Ile",
          "transcript": "NM_001297600.2",
          "protein_id": "NP_001284529.1",
          "transcript_support_level": null,
          "aa_start": 252,
          "aa_end": null,
          "aa_length": 405,
          "cds_start": 754,
          "cds_end": null,
          "cds_length": 1218,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001297600.2"
        },
        {
          "aa_ref": "V",
          "aa_alt": "I",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HSPBP1",
          "gene_hgnc_id": 24989,
          "hgvs_c": "c.616G>A",
          "hgvs_p": "p.Val206Ile",
          "transcript": "NM_001130106.2",
          "protein_id": "NP_001123578.1",
          "transcript_support_level": null,
          "aa_start": 206,
          "aa_end": null,
          "aa_length": 359,
          "cds_start": 616,
          "cds_end": null,
          "cds_length": 1080,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001130106.2"
        },
        {
          "aa_ref": "V",
          "aa_alt": "I",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HSPBP1",
          "gene_hgnc_id": 24989,
          "hgvs_c": "c.616G>A",
          "hgvs_p": "p.Val206Ile",
          "transcript": "ENST00000874509.1",
          "protein_id": "ENSP00000544568.1",
          "transcript_support_level": null,
          "aa_start": 206,
          "aa_end": null,
          "aa_length": 359,
          "cds_start": 616,
          "cds_end": null,
          "cds_length": 1080,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000874509.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "I",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HSPBP1",
          "gene_hgnc_id": 24989,
          "hgvs_c": "c.616G>A",
          "hgvs_p": "p.Val206Ile",
          "transcript": "ENST00000874510.1",
          "protein_id": "ENSP00000544569.1",
          "transcript_support_level": null,
          "aa_start": 206,
          "aa_end": null,
          "aa_length": 359,
          "cds_start": 616,
          "cds_end": null,
          "cds_length": 1080,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000874510.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "I",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HSPBP1",
          "gene_hgnc_id": 24989,
          "hgvs_c": "c.616G>A",
          "hgvs_p": "p.Val206Ile",
          "transcript": "ENST00000874511.1",
          "protein_id": "ENSP00000544570.1",
          "transcript_support_level": null,
          "aa_start": 206,
          "aa_end": null,
          "aa_length": 359,
          "cds_start": 616,
          "cds_end": null,
          "cds_length": 1080,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000874511.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "I",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HSPBP1",
          "gene_hgnc_id": 24989,
          "hgvs_c": "c.616G>A",
          "hgvs_p": "p.Val206Ile",
          "transcript": "ENST00000874512.1",
          "protein_id": "ENSP00000544571.1",
          "transcript_support_level": null,
          "aa_start": 206,
          "aa_end": null,
          "aa_length": 359,
          "cds_start": 616,
          "cds_end": null,
          "cds_length": 1080,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000874512.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "I",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HSPBP1",
          "gene_hgnc_id": 24989,
          "hgvs_c": "c.616G>A",
          "hgvs_p": "p.Val206Ile",
          "transcript": "ENST00000874513.1",
          "protein_id": "ENSP00000544572.1",
          "transcript_support_level": null,
          "aa_start": 206,
          "aa_end": null,
          "aa_length": 359,
          "cds_start": 616,
          "cds_end": null,
          "cds_length": 1080,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000874513.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "I",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HSPBP1",
          "gene_hgnc_id": 24989,
          "hgvs_c": "c.616G>A",
          "hgvs_p": "p.Val206Ile",
          "transcript": "ENST00000874514.1",
          "protein_id": "ENSP00000544573.1",
          "transcript_support_level": null,
          "aa_start": 206,
          "aa_end": null,
          "aa_length": 359,
          "cds_start": 616,
          "cds_end": null,
          "cds_length": 1080,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000874514.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "I",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HSPBP1",
          "gene_hgnc_id": 24989,
          "hgvs_c": "c.616G>A",
          "hgvs_p": "p.Val206Ile",
          "transcript": "ENST00000933732.1",
          "protein_id": "ENSP00000603791.1",
          "transcript_support_level": null,
          "aa_start": 206,
          "aa_end": null,
          "aa_length": 359,
          "cds_start": 616,
          "cds_end": null,
          "cds_length": 1080,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000933732.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "I",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HSPBP1",
          "gene_hgnc_id": 24989,
          "hgvs_c": "c.616G>A",
          "hgvs_p": "p.Val206Ile",
          "transcript": "ENST00000933733.1",
          "protein_id": "ENSP00000603792.1",
          "transcript_support_level": null,
          "aa_start": 206,
          "aa_end": null,
          "aa_length": 359,
          "cds_start": 616,
          "cds_end": null,
          "cds_length": 1080,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000933733.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "I",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HSPBP1",
          "gene_hgnc_id": 24989,
          "hgvs_c": "c.616G>A",
          "hgvs_p": "p.Val206Ile",
          "transcript": "ENST00000933734.1",
          "protein_id": "ENSP00000603793.1",
          "transcript_support_level": null,
          "aa_start": 206,
          "aa_end": null,
          "aa_length": 359,
          "cds_start": 616,
          "cds_end": null,
          "cds_length": 1080,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000933734.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "I",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HSPBP1",
          "gene_hgnc_id": 24989,
          "hgvs_c": "c.616G>A",
          "hgvs_p": "p.Val206Ile",
          "transcript": "ENST00000933735.1",
          "protein_id": "ENSP00000603794.1",
          "transcript_support_level": null,
          "aa_start": 206,
          "aa_end": null,
          "aa_length": 359,
          "cds_start": 616,
          "cds_end": null,
          "cds_length": 1080,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000933735.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "I",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HSPBP1",
          "gene_hgnc_id": 24989,
          "hgvs_c": "c.592G>A",
          "hgvs_p": "p.Val198Ile",
          "transcript": "ENST00000933736.1",
          "protein_id": "ENSP00000603795.1",
          "transcript_support_level": null,
          "aa_start": 198,
          "aa_end": null,
          "aa_length": 351,
          "cds_start": 592,
          "cds_end": null,
          "cds_length": 1056,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000933736.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "I",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HSPBP1",
          "gene_hgnc_id": 24989,
          "hgvs_c": "c.592G>A",
          "hgvs_p": "p.Val198Ile",
          "transcript": "ENST00000957929.1",
          "protein_id": "ENSP00000627988.1",
          "transcript_support_level": null,
          "aa_start": 198,
          "aa_end": null,
          "aa_length": 351,
          "cds_start": 592,
          "cds_end": null,
          "cds_length": 1056,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000957929.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "I",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HSPBP1",
          "gene_hgnc_id": 24989,
          "hgvs_c": "c.550G>A",
          "hgvs_p": "p.Val184Ile",
          "transcript": "ENST00000874515.1",
          "protein_id": "ENSP00000544574.1",
          "transcript_support_level": null,
          "aa_start": 184,
          "aa_end": null,
          "aa_length": 337,
          "cds_start": 550,
          "cds_end": null,
          "cds_length": 1014,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000874515.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "I",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HSPBP1",
          "gene_hgnc_id": 24989,
          "hgvs_c": "c.550G>A",
          "hgvs_p": "p.Val184Ile",
          "transcript": "ENST00000874516.1",
          "protein_id": "ENSP00000544575.1",
          "transcript_support_level": null,
          "aa_start": 184,
          "aa_end": null,
          "aa_length": 337,
          "cds_start": 550,
          "cds_end": null,
          "cds_length": 1014,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000874516.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "I",
          "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": "HSPBP1",
          "gene_hgnc_id": 24989,
          "hgvs_c": "c.616G>A",
          "hgvs_p": "p.Val206Ile",
          "transcript": "ENST00000957930.1",
          "protein_id": "ENSP00000627989.1",
          "transcript_support_level": null,
          "aa_start": 206,
          "aa_end": null,
          "aa_length": 307,
          "cds_start": 616,
          "cds_end": null,
          "cds_length": 924,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000957930.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "I",
          "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": "HSPBP1",
          "gene_hgnc_id": 24989,
          "hgvs_c": "c.616G>A",
          "hgvs_p": "p.Val206Ile",
          "transcript": "ENST00000593263.5",
          "protein_id": "ENSP00000465876.1",
          "transcript_support_level": 2,
          "aa_start": 206,
          "aa_end": null,
          "aa_length": 213,
          "cds_start": 616,
          "cds_end": null,
          "cds_length": 642,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000593263.5"
        },
        {
          "aa_ref": "V",
          "aa_alt": "I",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HSPBP1",
          "gene_hgnc_id": 24989,
          "hgvs_c": "c.217G>A",
          "hgvs_p": "p.Val73Ile",
          "transcript": "ENST00000587959.1",
          "protein_id": "ENSP00000466749.1",
          "transcript_support_level": 5,
          "aa_start": 73,
          "aa_end": null,
          "aa_length": 96,
          "cds_start": 217,
          "cds_end": null,
          "cds_length": 292,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000587959.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "I",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HSPBP1",
          "gene_hgnc_id": 24989,
          "hgvs_c": "c.616G>A",
          "hgvs_p": "p.Val206Ile",
          "transcript": "XM_005258701.4",
          "protein_id": "XP_005258758.1",
          "transcript_support_level": null,
          "aa_start": 206,
          "aa_end": null,
          "aa_length": 431,
          "cds_start": 616,
          "cds_end": null,
          "cds_length": 1296,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_005258701.4"
        },
        {
          "aa_ref": "V",
          "aa_alt": "I",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HSPBP1",
          "gene_hgnc_id": 24989,
          "hgvs_c": "c.616G>A",
          "hgvs_p": "p.Val206Ile",
          "transcript": "XM_011526691.2",
          "protein_id": "XP_011524993.1",
          "transcript_support_level": null,
          "aa_start": 206,
          "aa_end": null,
          "aa_length": 431,
          "cds_start": 616,
          "cds_end": null,
          "cds_length": 1296,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_011526691.2"
        },
        {
          "aa_ref": "V",
          "aa_alt": "I",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HSPBP1",
          "gene_hgnc_id": 24989,
          "hgvs_c": "c.616G>A",
          "hgvs_p": "p.Val206Ile",
          "transcript": "XM_024451436.2",
          "protein_id": "XP_024307204.1",
          "transcript_support_level": null,
          "aa_start": 206,
          "aa_end": null,
          "aa_length": 431,
          "cds_start": 616,
          "cds_end": null,
          "cds_length": 1296,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_024451436.2"
        },
        {
          "aa_ref": "V",
          "aa_alt": "I",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HSPBP1",
          "gene_hgnc_id": 24989,
          "hgvs_c": "c.616G>A",
          "hgvs_p": "p.Val206Ile",
          "transcript": "XM_017026544.3",
          "protein_id": "XP_016882033.1",
          "transcript_support_level": null,
          "aa_start": 206,
          "aa_end": null,
          "aa_length": 359,
          "cds_start": 616,
          "cds_end": null,
          "cds_length": 1080,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017026544.3"
        },
        {
          "aa_ref": "V",
          "aa_alt": "I",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 8,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "HSPBP1",
          "gene_hgnc_id": 24989,
          "hgvs_c": "c.616G>A",
          "hgvs_p": "p.Val206Ile",
          "transcript": "XM_024451437.2",
          "protein_id": "XP_024307205.1",
          "transcript_support_level": null,
          "aa_start": 206,
          "aa_end": null,
          "aa_length": 359,
          "cds_start": 616,
          "cds_end": null,
          "cds_length": 1080,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_024451437.2"
        },
        {
          "aa_ref": "V",
          "aa_alt": "I",
          "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": "HSPBP1",
          "gene_hgnc_id": 24989,
          "hgvs_c": "c.616G>A",
          "hgvs_p": "p.Val206Ile",
          "transcript": "XM_017026545.2",
          "protein_id": "XP_016882034.1",
          "transcript_support_level": null,
          "aa_start": 206,
          "aa_end": null,
          "aa_length": 327,
          "cds_start": 616,
          "cds_end": null,
          "cds_length": 984,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_017026545.2"
        },
        {
          "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": 3,
          "intron_rank_end": null,
          "gene_symbol": "HSPBP1",
          "gene_hgnc_id": 24989,
          "hgvs_c": "c.500+50G>A",
          "hgvs_p": null,
          "transcript": "ENST00000585927.1",
          "protein_id": "ENSP00000466569.1",
          "transcript_support_level": 5,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 189,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 570,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000585927.1"
        }
      ],
      "gene_symbol": "HSPBP1",
      "gene_hgnc_id": 24989,
      "dbsnp": "rs766830096",
      "frequency_reference_population": 0.000010051573,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 13,
      "gnomad_exomes_af": 0.0000100516,
      "gnomad_genomes_af": null,
      "gnomad_exomes_ac": 13,
      "gnomad_genomes_ac": null,
      "gnomad_exomes_homalt": 0,
      "gnomad_genomes_homalt": null,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.17246493697166443,
      "computational_prediction_selected": "Benign",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0.15000000596046448,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.127,
      "revel_prediction": "Benign",
      "alphamissense_score": 0.1039,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.46,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": 1.694,
      "phylop100way_prediction": "Benign",
      "spliceai_max_score": 0.15,
      "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": "Likely_benign",
      "acmg_criteria": "BP4_Moderate",
      "acmg_by_gene": [
        {
          "score": -2,
          "benign_score": 2,
          "pathogenic_score": 0,
          "criteria": [
            "BP4_Moderate"
          ],
          "verdict": "Likely_benign",
          "transcript": "NM_001297600.2",
          "gene_symbol": "HSPBP1",
          "hgnc_id": 24989,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AR",
          "hgvs_c": "c.754G>A",
          "hgvs_p": "p.Val252Ile"
        }
      ],
      "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
}