← 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: X-38160972-C-G (hg38)

Bash / cURL Example

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

API Response

json
{
  "message": null,
  "variants": [
    {
      "acmg_by_gene": [
        {
          "benign_score": 6,
          "criteria": [
            "BP4_Moderate",
            "BS2"
          ],
          "effects": [
            "missense_variant"
          ],
          "gene_symbol": "SRPX",
          "hgnc_id": 11309,
          "hgvs_c": "c.736G>C",
          "hgvs_p": "p.Glu246Gln",
          "inheritance_mode": "",
          "pathogenic_score": 0,
          "score": -6,
          "transcript": "NM_006307.5",
          "verdict": "Likely_benign"
        },
        {
          "benign_score": 6,
          "criteria": [
            "BP4_Moderate",
            "BS2"
          ],
          "effects": [
            "intron_variant"
          ],
          "gene_symbol": "ENSG00000250349",
          "hgnc_id": null,
          "hgvs_c": "c.172-505149C>G",
          "hgvs_p": null,
          "inheritance_mode": "",
          "pathogenic_score": 0,
          "score": -6,
          "transcript": "ENST00000465127.1",
          "verdict": "Likely_benign"
        }
      ],
      "acmg_classification": "Likely_benign",
      "acmg_criteria": "BP4_Moderate,BS2",
      "acmg_score": -6,
      "allele_count_reference_population": 19,
      "alphamissense_prediction": null,
      "alphamissense_score": 0.1086,
      "alt": "G",
      "apogee2_prediction": null,
      "apogee2_score": null,
      "bayesdelnoaf_prediction": "Benign",
      "bayesdelnoaf_score": -0.62,
      "chr": "X",
      "clinvar_classification": "Uncertain significance",
      "clinvar_disease": "not specified",
      "clinvar_review_status": "criteria provided, single submitter",
      "clinvar_submissions_summary": "US:1",
      "computational_prediction_selected": "Benign",
      "computational_score_selected": 0.2607048749923706,
      "computational_source_selected": "MetaRNN",
      "consequences": [
        {
          "aa_alt": "Q",
          "aa_end": null,
          "aa_length": 464,
          "aa_ref": "E",
          "aa_start": 246,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 1846,
          "cdna_start": 815,
          "cds_end": null,
          "cds_length": 1395,
          "cds_start": 736,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 10,
          "exon_rank": 6,
          "exon_rank_end": null,
          "feature": "NM_006307.5",
          "gene_hgnc_id": 11309,
          "gene_symbol": "SRPX",
          "hgvs_c": "c.736G>C",
          "hgvs_p": "p.Glu246Gln",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": "ENST00000378533.4",
          "protein_coding": true,
          "protein_id": "NP_006298.1",
          "strand": false,
          "transcript": "NM_006307.5",
          "transcript_support_level": null
        },
        {
          "aa_alt": "Q",
          "aa_end": null,
          "aa_length": 464,
          "aa_ref": "E",
          "aa_start": 246,
          "biotype": "protein_coding",
          "canonical": true,
          "cdna_end": null,
          "cdna_length": 1846,
          "cdna_start": 815,
          "cds_end": null,
          "cds_length": 1395,
          "cds_start": 736,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 10,
          "exon_rank": 6,
          "exon_rank_end": null,
          "feature": "ENST00000378533.4",
          "gene_hgnc_id": 11309,
          "gene_symbol": "SRPX",
          "hgvs_c": "c.736G>C",
          "hgvs_p": "p.Glu246Gln",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": "NM_006307.5",
          "protein_coding": true,
          "protein_id": "ENSP00000367794.3",
          "strand": false,
          "transcript": "ENST00000378533.4",
          "transcript_support_level": 1
        },
        {
          "aa_alt": null,
          "aa_end": null,
          "aa_length": 279,
          "aa_ref": null,
          "aa_start": null,
          "biotype": "protein_coding",
          "canonical": true,
          "cdna_end": null,
          "cdna_length": 954,
          "cdna_start": null,
          "cds_end": null,
          "cds_length": 840,
          "cds_start": null,
          "consequences": [
            "intron_variant"
          ],
          "exon_count": 9,
          "exon_rank": null,
          "exon_rank_end": null,
          "feature": "ENST00000465127.1",
          "gene_hgnc_id": null,
          "gene_symbol": "ENSG00000250349",
          "hgvs_c": "c.172-505149C>G",
          "hgvs_p": null,
          "intron_rank": 3,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000417050.1",
          "strand": true,
          "transcript": "ENST00000465127.1",
          "transcript_support_level": 5
        },
        {
          "aa_alt": "Q",
          "aa_end": null,
          "aa_length": 488,
          "aa_ref": "E",
          "aa_start": 246,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 1988,
          "cdna_start": 885,
          "cds_end": null,
          "cds_length": 1467,
          "cds_start": 736,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 11,
          "exon_rank": 6,
          "exon_rank_end": null,
          "feature": "ENST00000898757.1",
          "gene_hgnc_id": 11309,
          "gene_symbol": "SRPX",
          "hgvs_c": "c.736G>C",
          "hgvs_p": "p.Glu246Gln",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000568816.1",
          "strand": false,
          "transcript": "ENST00000898757.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "Q",
          "aa_end": null,
          "aa_length": 461,
          "aa_ref": "E",
          "aa_start": 246,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 1874,
          "cdna_start": 855,
          "cds_end": null,
          "cds_length": 1386,
          "cds_start": 736,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 10,
          "exon_rank": 6,
          "exon_rank_end": null,
          "feature": "ENST00000969691.1",
          "gene_hgnc_id": 11309,
          "gene_symbol": "SRPX",
          "hgvs_c": "c.736G>C",
          "hgvs_p": "p.Glu246Gln",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000639750.1",
          "strand": false,
          "transcript": "ENST00000969691.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "Q",
          "aa_end": null,
          "aa_length": 444,
          "aa_ref": "E",
          "aa_start": 226,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 1786,
          "cdna_start": 755,
          "cds_end": null,
          "cds_length": 1335,
          "cds_start": 676,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 9,
          "exon_rank": 5,
          "exon_rank_end": null,
          "feature": "NM_001170750.2",
          "gene_hgnc_id": 11309,
          "gene_symbol": "SRPX",
          "hgvs_c": "c.676G>C",
          "hgvs_p": "p.Glu226Gln",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "NP_001164221.1",
          "strand": false,
          "transcript": "NM_001170750.2",
          "transcript_support_level": null
        },
        {
          "aa_alt": "Q",
          "aa_end": null,
          "aa_length": 444,
          "aa_ref": "E",
          "aa_start": 226,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 1842,
          "cdna_start": 808,
          "cds_end": null,
          "cds_length": 1335,
          "cds_start": 676,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 9,
          "exon_rank": 5,
          "exon_rank_end": null,
          "feature": "ENST00000544439.5",
          "gene_hgnc_id": 11309,
          "gene_symbol": "SRPX",
          "hgvs_c": "c.676G>C",
          "hgvs_p": "p.Glu226Gln",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000440758.1",
          "strand": false,
          "transcript": "ENST00000544439.5",
          "transcript_support_level": 2
        },
        {
          "aa_alt": "Q",
          "aa_end": null,
          "aa_length": 431,
          "aa_ref": "E",
          "aa_start": 213,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 1707,
          "cdna_start": 681,
          "cds_end": null,
          "cds_length": 1296,
          "cds_start": 637,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 10,
          "exon_rank": 6,
          "exon_rank_end": null,
          "feature": "ENST00000969694.1",
          "gene_hgnc_id": 11309,
          "gene_symbol": "SRPX",
          "hgvs_c": "c.637G>C",
          "hgvs_p": "p.Glu213Gln",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000639753.1",
          "strand": false,
          "transcript": "ENST00000969694.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "Q",
          "aa_end": null,
          "aa_length": 405,
          "aa_ref": "E",
          "aa_start": 187,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 1669,
          "cdna_start": 638,
          "cds_end": null,
          "cds_length": 1218,
          "cds_start": 559,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 9,
          "exon_rank": 5,
          "exon_rank_end": null,
          "feature": "NM_001170751.2",
          "gene_hgnc_id": 11309,
          "gene_symbol": "SRPX",
          "hgvs_c": "c.559G>C",
          "hgvs_p": "p.Glu187Gln",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "NP_001164222.1",
          "strand": false,
          "transcript": "NM_001170751.2",
          "transcript_support_level": null
        },
        {
          "aa_alt": "Q",
          "aa_end": null,
          "aa_length": 405,
          "aa_ref": "E",
          "aa_start": 187,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 1725,
          "cdna_start": 691,
          "cds_end": null,
          "cds_length": 1218,
          "cds_start": 559,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 9,
          "exon_rank": 5,
          "exon_rank_end": null,
          "feature": "ENST00000432886.6",
          "gene_hgnc_id": 11309,
          "gene_symbol": "SRPX",
          "hgvs_c": "c.559G>C",
          "hgvs_p": "p.Glu187Gln",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000411165.2",
          "strand": false,
          "transcript": "ENST00000432886.6",
          "transcript_support_level": 2
        },
        {
          "aa_alt": "Q",
          "aa_end": null,
          "aa_length": 404,
          "aa_ref": "E",
          "aa_start": 246,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 1652,
          "cdna_start": 804,
          "cds_end": null,
          "cds_length": 1215,
          "cds_start": 736,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 9,
          "exon_rank": 6,
          "exon_rank_end": null,
          "feature": "ENST00000969693.1",
          "gene_hgnc_id": 11309,
          "gene_symbol": "SRPX",
          "hgvs_c": "c.736G>C",
          "hgvs_p": "p.Glu246Gln",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000639752.1",
          "strand": false,
          "transcript": "ENST00000969693.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "Q",
          "aa_end": null,
          "aa_length": 385,
          "aa_ref": "E",
          "aa_start": 167,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 1602,
          "cdna_start": 575,
          "cds_end": null,
          "cds_length": 1158,
          "cds_start": 499,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 8,
          "exon_rank": 4,
          "exon_rank_end": null,
          "feature": "ENST00000969692.1",
          "gene_hgnc_id": 11309,
          "gene_symbol": "SRPX",
          "hgvs_c": "c.499G>C",
          "hgvs_p": "p.Glu167Gln",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000639751.1",
          "strand": false,
          "transcript": "ENST00000969692.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "Q",
          "aa_end": null,
          "aa_length": 380,
          "aa_ref": "E",
          "aa_start": 162,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 1638,
          "cdna_start": 607,
          "cds_end": null,
          "cds_length": 1143,
          "cds_start": 484,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 8,
          "exon_rank": 4,
          "exon_rank_end": null,
          "feature": "ENST00000969690.1",
          "gene_hgnc_id": 11309,
          "gene_symbol": "SRPX",
          "hgvs_c": "c.484G>C",
          "hgvs_p": "p.Glu162Gln",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000639749.1",
          "strand": false,
          "transcript": "ENST00000969690.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "Q",
          "aa_end": null,
          "aa_length": 379,
          "aa_ref": "E",
          "aa_start": 246,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 1724,
          "cdna_start": 815,
          "cds_end": null,
          "cds_length": 1140,
          "cds_start": 736,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 9,
          "exon_rank": 6,
          "exon_rank_end": null,
          "feature": "NM_001170752.2",
          "gene_hgnc_id": 11309,
          "gene_symbol": "SRPX",
          "hgvs_c": "c.736G>C",
          "hgvs_p": "p.Glu246Gln",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "NP_001164223.1",
          "strand": false,
          "transcript": "NM_001170752.2",
          "transcript_support_level": null
        },
        {
          "aa_alt": "Q",
          "aa_end": null,
          "aa_length": 379,
          "aa_ref": "E",
          "aa_start": 246,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 1780,
          "cdna_start": 868,
          "cds_end": null,
          "cds_length": 1140,
          "cds_start": 736,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 9,
          "exon_rank": 6,
          "exon_rank_end": null,
          "feature": "ENST00000538295.5",
          "gene_hgnc_id": 11309,
          "gene_symbol": "SRPX",
          "hgvs_c": "c.736G>C",
          "hgvs_p": "p.Glu246Gln",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000445034.1",
          "strand": false,
          "transcript": "ENST00000538295.5",
          "transcript_support_level": 2
        },
        {
          "aa_alt": "Q",
          "aa_end": null,
          "aa_length": 321,
          "aa_ref": "E",
          "aa_start": 103,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 1411,
          "cdna_start": 380,
          "cds_end": null,
          "cds_length": 966,
          "cds_start": 307,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 7,
          "exon_rank": 3,
          "exon_rank_end": null,
          "feature": "ENST00000898758.1",
          "gene_hgnc_id": 11309,
          "gene_symbol": "SRPX",
          "hgvs_c": "c.307G>C",
          "hgvs_p": "p.Glu103Gln",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "ENSP00000568817.1",
          "strand": false,
          "transcript": "ENST00000898758.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "Q",
          "aa_end": null,
          "aa_length": 419,
          "aa_ref": "E",
          "aa_start": 246,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 1376,
          "cdna_start": 815,
          "cds_end": null,
          "cds_length": 1260,
          "cds_start": 736,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 10,
          "exon_rank": 6,
          "exon_rank_end": null,
          "feature": "XM_017029893.3",
          "gene_hgnc_id": 11309,
          "gene_symbol": "SRPX",
          "hgvs_c": "c.736G>C",
          "hgvs_p": "p.Glu246Gln",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "XP_016885382.1",
          "strand": false,
          "transcript": "XM_017029893.3",
          "transcript_support_level": null
        },
        {
          "aa_alt": "Q",
          "aa_end": null,
          "aa_length": 399,
          "aa_ref": "E",
          "aa_start": 226,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 1316,
          "cdna_start": 755,
          "cds_end": null,
          "cds_length": 1200,
          "cds_start": 676,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 9,
          "exon_rank": 5,
          "exon_rank_end": null,
          "feature": "XM_047442563.1",
          "gene_hgnc_id": 11309,
          "gene_symbol": "SRPX",
          "hgvs_c": "c.676G>C",
          "hgvs_p": "p.Glu226Gln",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "XP_047298519.1",
          "strand": false,
          "transcript": "XM_047442563.1",
          "transcript_support_level": null
        },
        {
          "aa_alt": "Q",
          "aa_end": null,
          "aa_length": 359,
          "aa_ref": "E",
          "aa_start": 226,
          "biotype": "protein_coding",
          "canonical": false,
          "cdna_end": null,
          "cdna_length": 1664,
          "cdna_start": 755,
          "cds_end": null,
          "cds_length": 1080,
          "cds_start": 676,
          "consequences": [
            "missense_variant"
          ],
          "exon_count": 8,
          "exon_rank": 5,
          "exon_rank_end": null,
          "feature": "XM_047442564.1",
          "gene_hgnc_id": 11309,
          "gene_symbol": "SRPX",
          "hgvs_c": "c.676G>C",
          "hgvs_p": "p.Glu226Gln",
          "intron_rank": null,
          "intron_rank_end": null,
          "mane_plus": null,
          "mane_select": null,
          "protein_coding": true,
          "protein_id": "XP_047298520.1",
          "strand": false,
          "transcript": "XM_047442564.1",
          "transcript_support_level": null
        }
      ],
      "custom_annotations": null,
      "dbscsnv_ada_prediction": null,
      "dbscsnv_ada_score": null,
      "dbsnp": "rs752895004",
      "effect": "missense_variant",
      "frequency_reference_population": 0.000015728321,
      "gene_hgnc_id": 11309,
      "gene_symbol": "SRPX",
      "gnomad_exomes_ac": 12,
      "gnomad_exomes_af": 0.0000109437,
      "gnomad_exomes_homalt": 0,
      "gnomad_genomes_ac": 7,
      "gnomad_genomes_af": 0.000062787,
      "gnomad_genomes_homalt": 0,
      "gnomad_mito_heteroplasmic": null,
      "gnomad_mito_homoplasmic": null,
      "hom_count_reference_population": 3,
      "mitotip_prediction": null,
      "mitotip_score": null,
      "pathogenicity_classification_combined": "Uncertain significance",
      "phenotype_combined": "not specified",
      "phylop100way_prediction": "Uncertain_significance",
      "phylop100way_score": 5.364,
      "pos": 38160972,
      "ref": "C",
      "revel_prediction": "Benign",
      "revel_score": 0.137,
      "splice_prediction_selected": "Benign",
      "splice_score_selected": 0.029999999329447746,
      "splice_source_selected": "max_spliceai",
      "spliceai_max_prediction": "Benign",
      "spliceai_max_score": 0.03,
      "transcript": "NM_006307.5"
    }
  ]
}
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.