← 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: 18-57661282-G-A (hg38)

Bash / cURL Example

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

API Response

json
{
  "message": null,
  "variants": [
    {
      "acmg_by_gene": [
        {
          "benign_score": 0,
          "criteria": [
            "PM2",
            "PM5",
            "PP3_Strong",
            "PP5"
          ],
          "effects": [
            "missense_variant"
          ],
          "gene_symbol": "ATP8B1",
          "hgnc_id": 3706,
          "hgvs_c": "c.2599C>T",
          "hgvs_p": "p.Arg867Cys",
          "inheritance_mode": "AR,Unknown",
          "pathogenic_score": 9,
          "score": 9,
          "transcript": "NM_005603.6",
          "verdict": "Likely_pathogenic"
        },
        {
          "benign_score": 0,
          "criteria": [
            "PM2",
            "PP3_Strong",
            "PP5"
          ],
          "effects": [
            "intron_variant"
          ],
          "gene_symbol": "ATP8B1-AS1",
          "hgnc_id": 56042,
          "hgvs_c": "n.723-6724G>A",
          "hgvs_p": null,
          "inheritance_mode": "",
          "pathogenic_score": 7,
          "score": 7,
          "transcript": "ENST00000592201.2",
          "verdict": "Likely_pathogenic"
        }
      ],
      "acmg_classification": "Likely_pathogenic",
      "acmg_criteria": "PM2,PM5,PP3_Strong,PP5",
      "acmg_score": 9,
      "allele_count_reference_population": 4,
      "alphamissense_prediction": null,
      "alphamissense_score": 0.9908,
      "alt": "A",
      "apogee2_prediction": null,
      "apogee2_score": null,
      "bayesdelnoaf_prediction": "Pathogenic",
      "bayesdelnoaf_score": 0.43,
      "chr": "18",
      "clinvar_classification": "Pathogenic",
      "clinvar_disease": " 1, intrahepatic, of pregnancy,Cholestasis",
      "clinvar_review_status": "no assertion criteria provided",
      "clinvar_submissions_summary": "null",
      "computational_prediction_selected": "Pathogenic",
      "computational_score_selected": 0.9865862131118774,
      "computational_source_selected": "MetaRNN",
      "consequences": [
        {
          "aa_alt": "C",
          "aa_end": null,
          "aa_length": 1251,
          "aa_ref": "R",
          "aa_start": 867,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 6161,
          "cdna_start": 2942,
          "cds_end": null,
          "cds_length": 3756,
          "cds_start": 2599,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 28,
          "exon_rank": 22,
          "exon_rank_end": null,
          "feature": "NM_001374385.1",
          "gene_hgnc_id": 3706,
          "gene_symbol": "ATP8B1",
          "hgvs_c": "c.2599C>T",
          "hgvs_p": "p.Arg867Cys",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": "ENST00000648908.2",
          "protein_coding": true,
          "protein_id": "NP_001361314.1",
          "strand": false,
          "transcript": "NM_001374385.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "C",
          "aa_end": null,
          "aa_length": 1251,
          "aa_ref": "R",
          "aa_start": 867,
          "biotype": "protein_coding",
          "canonical": true,
          "cdna_end": null,
          "cdna_length": 6161,
          "cdna_start": 2942,
          "cds_end": null,
          "cds_length": 3756,
          "cds_start": 2599,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 28,
          "exon_rank": 22,
          "exon_rank_end": null,
          "feature": "ENST00000648908.2",
          "gene_hgnc_id": 3706,
          "gene_symbol": "ATP8B1",
          "hgvs_c": "c.2599C>T",
          "hgvs_p": "p.Arg867Cys",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": "NM_001374385.1",
          "protein_coding": true,
          "protein_id": "ENSP00000497896.1",
          "strand": false,
          "transcript": "ENST00000648908.2",
          "transcript_support_level": null
        },
        {
          "aa_alt": null,
          "aa_end": null,
          "aa_length": null,
          "aa_ref": null,
          "aa_start": null,
          "biotype": "pseudogene",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 2013,
          "cdna_start": null,
          "cds_end": null,
          "cds_length": null,
          "cds_start": null,
          "consequences": [
            "intron_variant"
          ],
          "exon_count": 3,
          "exon_rank": null,
          "exon_rank_end": null,
          "feature": "ENST00000592201.2",
          "gene_hgnc_id": 56042,
          "gene_symbol": "ATP8B1-AS1",
          "hgvs_c": "n.723-6724G>A",
          "hgvs_p": null,
          "intron_rank": 2,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": false,
          "protein_id": null,
          "strand": true,
          "transcript": "ENST00000592201.2",
          "transcript_support_level": 1
        },
        {
          "aa_alt": "C",
          "aa_end": null,
          "aa_length": 1251,
          "aa_ref": "R",
          "aa_start": 867,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 6158,
          "cdna_start": 2939,
          "cds_end": null,
          "cds_length": 3756,
          "cds_start": 2599,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 28,
          "exon_rank": 22,
          "exon_rank_end": null,
          "feature": "NM_005603.6",
          "gene_hgnc_id": 3706,
          "gene_symbol": "ATP8B1",
          "hgvs_c": "c.2599C>T",
          "hgvs_p": "p.Arg867Cys",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "NP_005594.2",
          "strand": false,
          "transcript": "NM_005603.6",
          "transcript_support_level": null
        },
        {
          "aa_alt": "C",
          "aa_end": null,
          "aa_length": 1251,
          "aa_ref": "R",
          "aa_start": 867,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 6329,
          "cdna_start": 3116,
          "cds_end": null,
          "cds_length": 3756,
          "cds_start": 2599,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 28,
          "exon_rank": 22,
          "exon_rank_end": null,
          "feature": "ENST00000857621.1",
          "gene_hgnc_id": 3706,
          "gene_symbol": "ATP8B1",
          "hgvs_c": "c.2599C>T",
          "hgvs_p": "p.Arg867Cys",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000527680.1",
          "strand": false,
          "transcript": "ENST00000857621.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "C",
          "aa_end": null,
          "aa_length": 1251,
          "aa_ref": "R",
          "aa_start": 867,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 4881,
          "cdna_start": 3109,
          "cds_end": null,
          "cds_length": 3756,
          "cds_start": 2599,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 29,
          "exon_rank": 23,
          "exon_rank_end": null,
          "feature": "ENST00000857625.1",
          "gene_hgnc_id": 3706,
          "gene_symbol": "ATP8B1",
          "hgvs_c": "c.2599C>T",
          "hgvs_p": "p.Arg867Cys",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000527684.1",
          "strand": false,
          "transcript": "ENST00000857625.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "C",
          "aa_end": null,
          "aa_length": 1251,
          "aa_ref": "R",
          "aa_start": 867,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 4406,
          "cdna_start": 2975,
          "cds_end": null,
          "cds_length": 3756,
          "cds_start": 2599,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 29,
          "exon_rank": 23,
          "exon_rank_end": null,
          "feature": "ENST00000857626.1",
          "gene_hgnc_id": 3706,
          "gene_symbol": "ATP8B1",
          "hgvs_c": "c.2599C>T",
          "hgvs_p": "p.Arg867Cys",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000527685.1",
          "strand": false,
          "transcript": "ENST00000857626.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "C",
          "aa_end": null,
          "aa_length": 1251,
          "aa_ref": "R",
          "aa_start": 867,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 4621,
          "cdna_start": 2836,
          "cds_end": null,
          "cds_length": 3756,
          "cds_start": 2599,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 29,
          "exon_rank": 23,
          "exon_rank_end": null,
          "feature": "ENST00000857628.1",
          "gene_hgnc_id": 3706,
          "gene_symbol": "ATP8B1",
          "hgvs_c": "c.2599C>T",
          "hgvs_p": "p.Arg867Cys",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000527687.1",
          "strand": false,
          "transcript": "ENST00000857628.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "C",
          "aa_end": null,
          "aa_length": 1251,
          "aa_ref": "R",
          "aa_start": 867,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 4101,
          "cdna_start": 2717,
          "cds_end": null,
          "cds_length": 3756,
          "cds_start": 2599,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 28,
          "exon_rank": 22,
          "exon_rank_end": null,
          "feature": "ENST00000857629.1",
          "gene_hgnc_id": 3706,
          "gene_symbol": "ATP8B1",
          "hgvs_c": "c.2599C>T",
          "hgvs_p": "p.Arg867Cys",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000527688.1",
          "strand": false,
          "transcript": "ENST00000857629.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "C",
          "aa_end": null,
          "aa_length": 1251,
          "aa_ref": "R",
          "aa_start": 867,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 5944,
          "cdna_start": 2746,
          "cds_end": null,
          "cds_length": 3756,
          "cds_start": 2599,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 28,
          "exon_rank": 22,
          "exon_rank_end": null,
          "feature": "ENST00000938298.1",
          "gene_hgnc_id": 3706,
          "gene_symbol": "ATP8B1",
          "hgvs_c": "c.2599C>T",
          "hgvs_p": "p.Arg867Cys",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000608357.1",
          "strand": false,
          "transcript": "ENST00000938298.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "C",
          "aa_end": null,
          "aa_length": 1251,
          "aa_ref": "R",
          "aa_start": 867,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 6049,
          "cdna_start": 2858,
          "cds_end": null,
          "cds_length": 3756,
          "cds_start": 2599,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 29,
          "exon_rank": 23,
          "exon_rank_end": null,
          "feature": "ENST00000967608.1",
          "gene_hgnc_id": 3706,
          "gene_symbol": "ATP8B1",
          "hgvs_c": "c.2599C>T",
          "hgvs_p": "p.Arg867Cys",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000637667.1",
          "strand": false,
          "transcript": "ENST00000967608.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "C",
          "aa_end": null,
          "aa_length": 1251,
          "aa_ref": "R",
          "aa_start": 867,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 4051,
          "cdna_start": 2762,
          "cds_end": null,
          "cds_length": 3756,
          "cds_start": 2599,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 28,
          "exon_rank": 22,
          "exon_rank_end": null,
          "feature": "ENST00000967609.1",
          "gene_hgnc_id": 3706,
          "gene_symbol": "ATP8B1",
          "hgvs_c": "c.2599C>T",
          "hgvs_p": "p.Arg867Cys",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000637668.1",
          "strand": false,
          "transcript": "ENST00000967609.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "C",
          "aa_end": null,
          "aa_length": 1251,
          "aa_ref": "R",
          "aa_start": 867,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 5942,
          "cdna_start": 2744,
          "cds_end": null,
          "cds_length": 3756,
          "cds_start": 2599,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 28,
          "exon_rank": 22,
          "exon_rank_end": null,
          "feature": "ENST00000967610.1",
          "gene_hgnc_id": 3706,
          "gene_symbol": "ATP8B1",
          "hgvs_c": "c.2599C>T",
          "hgvs_p": "p.Arg867Cys",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000637669.1",
          "strand": false,
          "transcript": "ENST00000967610.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "C",
          "aa_end": null,
          "aa_length": 1251,
          "aa_ref": "R",
          "aa_start": 867,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 5923,
          "cdna_start": 2725,
          "cds_end": null,
          "cds_length": 3756,
          "cds_start": 2599,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 28,
          "exon_rank": 22,
          "exon_rank_end": null,
          "feature": "ENST00000967611.1",
          "gene_hgnc_id": 3706,
          "gene_symbol": "ATP8B1",
          "hgvs_c": "c.2599C>T",
          "hgvs_p": "p.Arg867Cys",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000637670.1",
          "strand": false,
          "transcript": "ENST00000967611.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "C",
          "aa_end": null,
          "aa_length": 1229,
          "aa_ref": "R",
          "aa_start": 845,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 6054,
          "cdna_start": 2859,
          "cds_end": null,
          "cds_length": 3690,
          "cds_start": 2533,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 28,
          "exon_rank": 22,
          "exon_rank_end": null,
          "feature": "ENST00000967607.1",
          "gene_hgnc_id": 3706,
          "gene_symbol": "ATP8B1",
          "hgvs_c": "c.2533C>T",
          "hgvs_p": "p.Arg845Cys",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000637666.1",
          "strand": false,
          "transcript": "ENST00000967607.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "C",
          "aa_end": null,
          "aa_length": 1213,
          "aa_ref": "R",
          "aa_start": 829,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 6023,
          "cdna_start": 2828,
          "cds_end": null,
          "cds_length": 3642,
          "cds_start": 2485,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 27,
          "exon_rank": 21,
          "exon_rank_end": null,
          "feature": "ENST00000857622.1",
          "gene_hgnc_id": 3706,
          "gene_symbol": "ATP8B1",
          "hgvs_c": "c.2485C>T",
          "hgvs_p": "p.Arg829Cys",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000527681.1",
          "strand": false,
          "transcript": "ENST00000857622.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "C",
          "aa_end": null,
          "aa_length": 1213,
          "aa_ref": "R",
          "aa_start": 829,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 5856,
          "cdna_start": 2658,
          "cds_end": null,
          "cds_length": 3642,
          "cds_start": 2485,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 27,
          "exon_rank": 21,
          "exon_rank_end": null,
          "feature": "ENST00000857623.1",
          "gene_hgnc_id": 3706,
          "gene_symbol": "ATP8B1",
          "hgvs_c": "c.2485C>T",
          "hgvs_p": "p.Arg829Cys",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000527682.1",
          "strand": false,
          "transcript": "ENST00000857623.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "C",
          "aa_end": null,
          "aa_length": 1213,
          "aa_ref": "R",
          "aa_start": 829,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 6374,
          "cdna_start": 3185,
          "cds_end": null,
          "cds_length": 3642,
          "cds_start": 2485,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 28,
          "exon_rank": 22,
          "exon_rank_end": null,
          "feature": "ENST00000967606.1",
          "gene_hgnc_id": 3706,
          "gene_symbol": "ATP8B1",
          "hgvs_c": "c.2485C>T",
          "hgvs_p": "p.Arg829Cys",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000637665.1",
          "strand": false,
          "transcript": "ENST00000967606.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "C",
          "aa_end": null,
          "aa_length": 1201,
          "aa_ref": "R",
          "aa_start": 817,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 6063,
          "cdna_start": 2844,
          "cds_end": null,
          "cds_length": 3606,
          "cds_start": 2449,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 27,
          "exon_rank": 21,
          "exon_rank_end": null,
          "feature": "NM_001374386.1",
          "gene_hgnc_id": 3706,
          "gene_symbol": "ATP8B1",
          "hgvs_c": "c.2449C>T",
          "hgvs_p": "p.Arg817Cys",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "NP_001361315.1",
          "strand": false,
          "transcript": "NM_001374386.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "C",
          "aa_end": null,
          "aa_length": 1180,
          "aa_ref": "R",
          "aa_start": 796,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 5702,
          "cdna_start": 2505,
          "cds_end": null,
          "cds_length": 3543,
          "cds_start": 2386,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 26,
          "exon_rank": 20,
          "exon_rank_end": null,
          "feature": "ENST00000857624.1",
          "gene_hgnc_id": 3706,
          "gene_symbol": "ATP8B1",
          "hgvs_c": "c.2386C>T",
          "hgvs_p": "p.Arg796Cys",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000527683.1",
          "strand": false,
          "transcript": "ENST00000857624.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "C",
          "aa_end": null,
          "aa_length": 1180,
          "aa_ref": "R",
          "aa_start": 796,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 3891,
          "cdna_start": 2602,
          "cds_end": null,
          "cds_length": 3543,
          "cds_start": 2386,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 26,
          "exon_rank": 20,
          "exon_rank_end": null,
          "feature": "ENST00000857627.1",
          "gene_hgnc_id": 3706,
          "gene_symbol": "ATP8B1",
          "hgvs_c": "c.2386C>T",
          "hgvs_p": "p.Arg796Cys",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000527686.1",
          "strand": false,
          "transcript": "ENST00000857627.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "C",
          "aa_end": null,
          "aa_length": 1251,
          "aa_ref": "R",
          "aa_start": 867,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 5950,
          "cdna_start": 2731,
          "cds_end": null,
          "cds_length": 3756,
          "cds_start": 2599,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 28,
          "exon_rank": 22,
          "exon_rank_end": null,
          "feature": "XM_047437541.1",
          "gene_hgnc_id": 3706,
          "gene_symbol": "ATP8B1",
          "hgvs_c": "c.2599C>T",
          "hgvs_p": "p.Arg867Cys",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "XP_047293497.1",
          "strand": false,
          "transcript": "XM_047437541.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "C",
          "aa_end": null,
          "aa_length": 1251,
          "aa_ref": "R",
          "aa_start": 867,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 5924,
          "cdna_start": 2705,
          "cds_end": null,
          "cds_length": 3756,
          "cds_start": 2599,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 28,
          "exon_rank": 22,
          "exon_rank_end": null,
          "feature": "XM_047437542.1",
          "gene_hgnc_id": 3706,
          "gene_symbol": "ATP8B1",
          "hgvs_c": "c.2599C>T",
          "hgvs_p": "p.Arg867Cys",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "XP_047293498.1",
          "strand": false,
          "transcript": "XM_047437542.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "C",
          "aa_end": null,
          "aa_length": 1251,
          "aa_ref": "R",
          "aa_start": 867,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 5933,
          "cdna_start": 2714,
          "cds_end": null,
          "cds_length": 3756,
          "cds_start": 2599,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 28,
          "exon_rank": 22,
          "exon_rank_end": null,
          "feature": "XM_047437543.1",
          "gene_hgnc_id": 3706,
          "gene_symbol": "ATP8B1",
          "hgvs_c": "c.2599C>T",
          "hgvs_p": "p.Arg867Cys",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "XP_047293499.1",
          "strand": false,
          "transcript": "XM_047437543.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "C",
          "aa_end": null,
          "aa_length": 1251,
          "aa_ref": "R",
          "aa_start": 867,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 5953,
          "cdna_start": 2734,
          "cds_end": null,
          "cds_length": 3756,
          "cds_start": 2599,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 28,
          "exon_rank": 22,
          "exon_rank_end": null,
          "feature": "XM_047437544.1",
          "gene_hgnc_id": 3706,
          "gene_symbol": "ATP8B1",
          "hgvs_c": "c.2599C>T",
          "hgvs_p": "p.Arg867Cys",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "XP_047293500.1",
          "strand": false,
          "transcript": "XM_047437544.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "C",
          "aa_end": null,
          "aa_length": 1251,
          "aa_ref": "R",
          "aa_start": 867,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 5990,
          "cdna_start": 2771,
          "cds_end": null,
          "cds_length": 3756,
          "cds_start": 2599,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 28,
          "exon_rank": 22,
          "exon_rank_end": null,
          "feature": "XM_047437545.1",
          "gene_hgnc_id": 3706,
          "gene_symbol": "ATP8B1",
          "hgvs_c": "c.2599C>T",
          "hgvs_p": "p.Arg867Cys",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "XP_047293501.1",
          "strand": false,
          "transcript": "XM_047437545.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "C",
          "aa_end": null,
          "aa_length": 1251,
          "aa_ref": "R",
          "aa_start": 867,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 6233,
          "cdna_start": 3014,
          "cds_end": null,
          "cds_length": 3756,
          "cds_start": 2599,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 28,
          "exon_rank": 22,
          "exon_rank_end": null,
          "feature": "XM_047437546.1",
          "gene_hgnc_id": 3706,
          "gene_symbol": "ATP8B1",
          "hgvs_c": "c.2599C>T",
          "hgvs_p": "p.Arg867Cys",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "XP_047293502.1",
          "strand": false,
          "transcript": "XM_047437546.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "C",
          "aa_end": null,
          "aa_length": 1213,
          "aa_ref": "R",
          "aa_start": 829,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 6047,
          "cdna_start": 2828,
          "cds_end": null,
          "cds_length": 3642,
          "cds_start": 2485,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 27,
          "exon_rank": 21,
          "exon_rank_end": null,
          "feature": "XM_011526023.4",
          "gene_hgnc_id": 3706,
          "gene_symbol": "ATP8B1",
          "hgvs_c": "c.2485C>T",
          "hgvs_p": "p.Arg829Cys",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "XP_011524325.1",
          "strand": false,
          "transcript": "XM_011526023.4",
          "transcript_support_level": null
        },
        {
          "aa_alt": "C",
          "aa_end": null,
          "aa_length": 1213,
          "aa_ref": "R",
          "aa_start": 829,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 6044,
          "cdna_start": 2825,
          "cds_end": null,
          "cds_length": 3642,
          "cds_start": 2485,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 27,
          "exon_rank": 21,
          "exon_rank_end": null,
          "feature": "XM_047437547.1",
          "gene_hgnc_id": 3706,
          "gene_symbol": "ATP8B1",
          "hgvs_c": "c.2485C>T",
          "hgvs_p": "p.Arg829Cys",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "XP_047293503.1",
          "strand": false,
          "transcript": "XM_047437547.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "C",
          "aa_end": null,
          "aa_length": 1213,
          "aa_ref": "R",
          "aa_start": 829,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 5836,
          "cdna_start": 2617,
          "cds_end": null,
          "cds_length": 3642,
          "cds_start": 2485,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 27,
          "exon_rank": 21,
          "exon_rank_end": null,
          "feature": "XM_047437548.1",
          "gene_hgnc_id": 3706,
          "gene_symbol": "ATP8B1",
          "hgvs_c": "c.2485C>T",
          "hgvs_p": "p.Arg829Cys",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "XP_047293504.1",
          "strand": false,
          "transcript": "XM_047437548.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": null,
          "aa_end": null,
          "aa_length": null,
          "aa_ref": null,
          "aa_start": null,
          "biotype": "nonsense_mediated_decay",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 5956,
          "cdna_start": null,
          "cds_end": null,
          "cds_length": null,
          "cds_start": null,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_count": 29,
          "exon_rank": 22,
          "exon_rank_end": null,
          "feature": "ENST00000642462.1",
          "gene_hgnc_id": 3706,
          "gene_symbol": "ATP8B1",
          "hgvs_c": "n.2599C>T",
          "hgvs_p": null,
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": false,
          "protein_id": "ENSP00000494712.1",
          "strand": false,
          "transcript": "ENST00000642462.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": null,
          "aa_end": null,
          "aa_length": null,
          "aa_ref": null,
          "aa_start": null,
          "biotype": "nonsense_mediated_decay",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 5919,
          "cdna_start": null,
          "cds_end": null,
          "cds_length": null,
          "cds_start": null,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_count": 29,
          "exon_rank": 22,
          "exon_rank_end": null,
          "feature": "ENST00000648039.1",
          "gene_hgnc_id": 3706,
          "gene_symbol": "ATP8B1",
          "hgvs_c": "n.2599C>T",
          "hgvs_p": null,
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": false,
          "protein_id": "ENSP00000497863.1",
          "strand": false,
          "transcript": "ENST00000648039.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": null,
          "aa_end": null,
          "aa_length": null,
          "aa_ref": null,
          "aa_start": null,
          "biotype": "pseudogene",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 1976,
          "cdna_start": null,
          "cds_end": null,
          "cds_length": null,
          "cds_start": null,
          "consequences": [
            "intron_variant"
          ],
          "exon_count": 6,
          "exon_rank": null,
          "exon_rank_end": null,
          "feature": "ENST00000588925.5",
          "gene_hgnc_id": 56042,
          "gene_symbol": "ATP8B1-AS1",
          "hgvs_c": "n.570+19230G>A",
          "hgvs_p": null,
          "intron_rank": 2,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": false,
          "protein_id": null,
          "strand": true,
          "transcript": "ENST00000588925.5",
          "transcript_support_level": 2
        },
        {
          "aa_alt": null,
          "aa_end": null,
          "aa_length": null,
          "aa_ref": null,
          "aa_start": null,
          "biotype": "pseudogene",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 1179,
          "cdna_start": null,
          "cds_end": null,
          "cds_length": null,
          "cds_start": null,
          "consequences": [
            "intron_variant"
          ],
          "exon_count": 3,
          "exon_rank": null,
          "exon_rank_end": null,
          "feature": "ENST00000591854.6",
          "gene_hgnc_id": 56042,
          "gene_symbol": "ATP8B1-AS1",
          "hgvs_c": "n.712-5960G>A",
          "hgvs_p": null,
          "intron_rank": 2,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": false,
          "protein_id": null,
          "strand": true,
          "transcript": "ENST00000591854.6",
          "transcript_support_level": 5
        },
        {
          "aa_alt": null,
          "aa_end": null,
          "aa_length": null,
          "aa_ref": null,
          "aa_start": null,
          "biotype": "pseudogene",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 1482,
          "cdna_start": null,
          "cds_end": null,
          "cds_length": null,
          "cds_start": null,
          "consequences": [
            "intron_variant"
          ],
          "exon_count": 3,
          "exon_rank": null,
          "exon_rank_end": null,
          "feature": "ENST00000619899.2",
          "gene_hgnc_id": 56042,
          "gene_symbol": "ATP8B1-AS1",
          "hgvs_c": "n.302-6724G>A",
          "hgvs_p": null,
          "intron_rank": 2,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": false,
          "protein_id": null,
          "strand": true,
          "transcript": "ENST00000619899.2",
          "transcript_support_level": 5
        },
        {
          "aa_alt": null,
          "aa_end": null,
          "aa_length": null,
          "aa_ref": null,
          "aa_start": null,
          "biotype": "pseudogene",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 454,
          "cdna_start": null,
          "cds_end": null,
          "cds_length": null,
          "cds_start": null,
          "consequences": [
            "intron_variant"
          ],
          "exon_count": 3,
          "exon_rank": null,
          "exon_rank_end": null,
          "feature": "ENST00000794640.1",
          "gene_hgnc_id": 56042,
          "gene_symbol": "ATP8B1-AS1",
          "hgvs_c": "n.308+19649G>A",
          "hgvs_p": null,
          "intron_rank": 2,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": false,
          "protein_id": null,
          "strand": true,
          "transcript": "ENST00000794640.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": null,
          "aa_end": null,
          "aa_length": null,
          "aa_ref": null,
          "aa_start": null,
          "biotype": "pseudogene",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 1469,
          "cdna_start": null,
          "cds_end": null,
          "cds_length": null,
          "cds_start": null,
          "consequences": [
            "intron_variant"
          ],
          "exon_count": 2,
          "exon_rank": null,
          "exon_rank_end": null,
          "feature": "ENST00000794641.1",
          "gene_hgnc_id": 56042,
          "gene_symbol": "ATP8B1-AS1",
          "hgvs_c": "n.204-6724G>A",
          "hgvs_p": null,
          "intron_rank": 1,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": false,
          "protein_id": null,
          "strand": true,
          "transcript": "ENST00000794641.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": null,
          "aa_end": null,
          "aa_length": null,
          "aa_ref": null,
          "aa_start": null,
          "biotype": "pseudogene",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 2071,
          "cdna_start": null,
          "cds_end": null,
          "cds_length": null,
          "cds_start": null,
          "consequences": [
            "intron_variant"
          ],
          "exon_count": 4,
          "exon_rank": null,
          "exon_rank_end": null,
          "feature": "ENST00000794642.1",
          "gene_hgnc_id": 56042,
          "gene_symbol": "ATP8B1-AS1",
          "hgvs_c": "n.893+3381G>A",
          "hgvs_p": null,
          "intron_rank": 3,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": false,
          "protein_id": null,
          "strand": true,
          "transcript": "ENST00000794642.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": null,
          "aa_end": null,
          "aa_length": null,
          "aa_ref": null,
          "aa_start": null,
          "biotype": "pseudogene",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 766,
          "cdna_start": null,
          "cds_end": null,
          "cds_length": null,
          "cds_start": null,
          "consequences": [
            "intron_variant"
          ],
          "exon_count": 3,
          "exon_rank": null,
          "exon_rank_end": null,
          "feature": "ENST00000794643.1",
          "gene_hgnc_id": 56042,
          "gene_symbol": "ATP8B1-AS1",
          "hgvs_c": "n.299-5960G>A",
          "hgvs_p": null,
          "intron_rank": 2,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": false,
          "protein_id": null,
          "strand": true,
          "transcript": "ENST00000794643.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": null,
          "aa_end": null,
          "aa_length": null,
          "aa_ref": null,
          "aa_start": null,
          "biotype": "pseudogene",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 895,
          "cdna_start": null,
          "cds_end": null,
          "cds_length": null,
          "cds_start": null,
          "consequences": [
            "intron_variant"
          ],
          "exon_count": 3,
          "exon_rank": null,
          "exon_rank_end": null,
          "feature": "ENST00000794776.1",
          "gene_hgnc_id": 56042,
          "gene_symbol": "ATP8B1-AS1",
          "hgvs_c": "n.310+19230G>A",
          "hgvs_p": null,
          "intron_rank": 2,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": false,
          "protein_id": null,
          "strand": true,
          "transcript": "ENST00000794776.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": null,
          "aa_end": null,
          "aa_length": null,
          "aa_ref": null,
          "aa_start": null,
          "biotype": "pseudogene",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 1091,
          "cdna_start": null,
          "cds_end": null,
          "cds_length": null,
          "cds_start": null,
          "consequences": [
            "intron_variant"
          ],
          "exon_count": 4,
          "exon_rank": null,
          "exon_rank_end": null,
          "feature": "ENST00000794777.1",
          "gene_hgnc_id": 56042,
          "gene_symbol": "ATP8B1-AS1",
          "hgvs_c": "n.370+19230G>A",
          "hgvs_p": null,
          "intron_rank": 2,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": false,
          "protein_id": null,
          "strand": true,
          "transcript": "ENST00000794777.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": null,
          "aa_end": null,
          "aa_length": null,
          "aa_ref": null,
          "aa_start": null,
          "biotype": "pseudogene",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 1311,
          "cdna_start": null,
          "cds_end": null,
          "cds_length": null,
          "cds_start": null,
          "consequences": [
            "intron_variant"
          ],
          "exon_count": 3,
          "exon_rank": null,
          "exon_rank_end": null,
          "feature": "ENST00000794778.1",
          "gene_hgnc_id": 56042,
          "gene_symbol": "ATP8B1-AS1",
          "hgvs_c": "n.682+19230G>A",
          "hgvs_p": null,
          "intron_rank": 2,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": false,
          "protein_id": null,
          "strand": true,
          "transcript": "ENST00000794778.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": null,
          "aa_end": null,
          "aa_length": null,
          "aa_ref": null,
          "aa_start": null,
          "biotype": "pseudogene",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 901,
          "cdna_start": null,
          "cds_end": null,
          "cds_length": null,
          "cds_start": null,
          "consequences": [
            "intron_variant"
          ],
          "exon_count": 3,
          "exon_rank": null,
          "exon_rank_end": null,
          "feature": "ENST00000794779.1",
          "gene_hgnc_id": 56042,
          "gene_symbol": "ATP8B1-AS1",
          "hgvs_c": "n.328-7328G>A",
          "hgvs_p": null,
          "intron_rank": 2,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": false,
          "protein_id": null,
          "strand": true,
          "transcript": "ENST00000794779.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": null,
          "aa_end": null,
          "aa_length": null,
          "aa_ref": null,
          "aa_start": null,
          "biotype": "pseudogene",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 1960,
          "cdna_start": null,
          "cds_end": null,
          "cds_length": null,
          "cds_start": null,
          "consequences": [
            "intron_variant"
          ],
          "exon_count": 3,
          "exon_rank": null,
          "exon_rank_end": null,
          "feature": "NR_164148.1",
          "gene_hgnc_id": 56042,
          "gene_symbol": "ATP8B1-AS1",
          "hgvs_c": "n.683-6724G>A",
          "hgvs_p": null,
          "intron_rank": 2,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": false,
          "protein_id": null,
          "strand": true,
          "transcript": "NR_164148.1",
          "transcript_support_level": null
        }
      ],
      "custom_annotations": null,
      "dbscsnv_ada_prediction": null,
      "dbscsnv_ada_score": null,
      "dbsnp": "rs121909103",
      "effect": "missense_variant",
      "frequency_reference_population": 0.0000027361802,
      "gene_hgnc_id": 3706,
      "gene_symbol": "ATP8B1",
      "gnomad_exomes_ac": 4,
      "gnomad_exomes_af": 0.00000273618,
      "gnomad_exomes_homalt": 0,
      "gnomad_genomes_ac": null,
      "gnomad_genomes_af": null,
      "gnomad_genomes_homalt": null,
      "gnomad_mito_heteroplasmic": null,
      "gnomad_mito_homoplasmic": null,
      "hom_count_reference_population": 0,
      "mitotip_prediction": null,
      "mitotip_score": null,
      "pathogenicity_classification_combined": "Pathogenic",
      "phenotype_combined": "Cholestasis, intrahepatic, of pregnancy, 1",
      "phylop100way_prediction": "Uncertain_significance",
      "phylop100way_score": 4.881,
      "pos": 57661282,
      "ref": "G",
      "revel_prediction": "Pathogenic",
      "revel_score": 0.847,
      "splice_prediction_selected": "Benign",
      "splice_score_selected": 0,
      "splice_source_selected": "max_spliceai",
      "spliceai_max_prediction": "Benign",
      "spliceai_max_score": 0,
      "transcript": "NM_005603.6"
    }
  ]
}
For research and educational, non-commercial use only. Not for clinical or diagnostic use. GeneBe does not provide medical advice. Data use for AI modeling is prohibited: if used, the cost is $0.001 per byte of downloaded uncompressed data.