← 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: 20-1571009-G-A (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "20",
      "pos": 1571009,
      "ref": "G",
      "alt": "A",
      "effect": "missense_variant",
      "transcript": "NM_006065.5",
      "consequences": [
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SIRPB1",
          "gene_hgnc_id": 15928,
          "hgvs_c": "c.880C>T",
          "hgvs_p": "p.Arg294Trp",
          "transcript": "NM_006065.5",
          "protein_id": "NP_006056.2",
          "transcript_support_level": null,
          "aa_start": 294,
          "aa_end": null,
          "aa_length": 398,
          "cds_start": 880,
          "cds_end": null,
          "cds_length": 1197,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000381605.9",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_006065.5"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": true,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SIRPB1",
          "gene_hgnc_id": 15928,
          "hgvs_c": "c.880C>T",
          "hgvs_p": "p.Arg294Trp",
          "transcript": "ENST00000381605.9",
          "protein_id": "ENSP00000371018.5",
          "transcript_support_level": 1,
          "aa_start": 294,
          "aa_end": null,
          "aa_length": 398,
          "cds_start": 880,
          "cds_end": null,
          "cds_length": 1197,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_006065.5",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000381605.9"
        },
        {
          "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": 4,
          "intron_rank": 2,
          "intron_rank_end": null,
          "gene_symbol": "SIRPB1",
          "gene_hgnc_id": 15928,
          "hgvs_c": "c.434-4742C>T",
          "hgvs_p": null,
          "transcript": "ENST00000381603.7",
          "protein_id": "ENSP00000371016.3",
          "transcript_support_level": 1,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 181,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 546,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000381603.7"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": true,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 3,
          "intron_rank": 2,
          "intron_rank_end": null,
          "gene_symbol": "ENSG00000260861",
          "gene_hgnc_id": null,
          "hgvs_c": "c.433+7329C>T",
          "hgvs_p": null,
          "transcript": "ENST00000564763.1",
          "protein_id": "ENSP00000457944.1",
          "transcript_support_level": 4,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 172,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 519,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000564763.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SIRPB1",
          "gene_hgnc_id": 15928,
          "hgvs_c": "c.880C>T",
          "hgvs_p": "p.Arg294Trp",
          "transcript": "ENST00000876186.1",
          "protein_id": "ENSP00000546245.1",
          "transcript_support_level": null,
          "aa_start": 294,
          "aa_end": null,
          "aa_length": 398,
          "cds_start": 880,
          "cds_end": null,
          "cds_length": 1197,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000876186.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 2,
          "exon_rank_end": null,
          "exon_count": 2,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SIRPB1",
          "gene_hgnc_id": 15928,
          "hgvs_c": "c.322C>T",
          "hgvs_p": "p.Arg108Trp",
          "transcript": "ENST00000565076.1",
          "protein_id": "ENSP00000457829.1",
          "transcript_support_level": 2,
          "aa_start": 108,
          "aa_end": null,
          "aa_length": 182,
          "cds_start": 322,
          "cds_end": null,
          "cds_length": 549,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000565076.1"
        },
        {
          "aa_ref": "R",
          "aa_alt": "W",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "SIRPB1",
          "gene_hgnc_id": 15928,
          "hgvs_c": "c.877C>T",
          "hgvs_p": "p.Arg293Trp",
          "transcript": "XM_005260641.4",
          "protein_id": "XP_005260698.1",
          "transcript_support_level": null,
          "aa_start": 293,
          "aa_end": null,
          "aa_length": 397,
          "cds_start": 877,
          "cds_end": null,
          "cds_length": 1194,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_005260641.4"
        },
        {
          "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": "SIRPB1",
          "gene_hgnc_id": 15928,
          "hgvs_c": "c.751+711C>T",
          "hgvs_p": null,
          "transcript": "ENST00000969009.1",
          "protein_id": "ENSP00000639068.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 287,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 864,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000969009.1"
        },
        {
          "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": 4,
          "intron_rank": 2,
          "intron_rank_end": null,
          "gene_symbol": "SIRPB1",
          "gene_hgnc_id": 15928,
          "hgvs_c": "c.434-4742C>T",
          "hgvs_p": null,
          "transcript": "NM_001083910.4",
          "protein_id": "NP_001077379.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 181,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 546,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001083910.4"
        },
        {
          "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": 3,
          "intron_rank": 2,
          "intron_rank_end": null,
          "gene_symbol": "SIRPB1",
          "gene_hgnc_id": 15928,
          "hgvs_c": "c.434-4742C>T",
          "hgvs_p": null,
          "transcript": "ENST00000876187.1",
          "protein_id": "ENSP00000546246.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 181,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 546,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000876187.1"
        },
        {
          "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": 4,
          "intron_rank": 2,
          "intron_rank_end": null,
          "gene_symbol": "SIRPB1",
          "gene_hgnc_id": 15928,
          "hgvs_c": "c.434-4742C>T",
          "hgvs_p": null,
          "transcript": "ENST00000969011.1",
          "protein_id": "ENSP00000639070.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 181,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 546,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000969011.1"
        },
        {
          "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": 4,
          "intron_rank": 2,
          "intron_rank_end": null,
          "gene_symbol": "SIRPB1",
          "gene_hgnc_id": 15928,
          "hgvs_c": "c.431-4742C>T",
          "hgvs_p": null,
          "transcript": "NM_001330639.2",
          "protein_id": "NP_001317568.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 180,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 543,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001330639.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": 4,
          "intron_rank": 2,
          "intron_rank_end": null,
          "gene_symbol": "SIRPB1",
          "gene_hgnc_id": 15928,
          "hgvs_c": "c.431-4742C>T",
          "hgvs_p": null,
          "transcript": "ENST00000262929.9",
          "protein_id": "ENSP00000262929.5",
          "transcript_support_level": 5,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 180,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 543,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000262929.9"
        },
        {
          "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": 3,
          "intron_rank": 2,
          "intron_rank_end": null,
          "gene_symbol": "ENSG00000260861",
          "gene_hgnc_id": null,
          "hgvs_c": "c.430+7329C>T",
          "hgvs_p": null,
          "transcript": "ENST00000567028.5",
          "protein_id": "ENSP00000454437.1",
          "transcript_support_level": 4,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 176,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 531,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000567028.5"
        },
        {
          "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": 3,
          "intron_rank": 2,
          "intron_rank_end": null,
          "gene_symbol": "SIRPB1",
          "gene_hgnc_id": 15928,
          "hgvs_c": "c.431-4742C>T",
          "hgvs_p": null,
          "transcript": "ENST00000563840.1",
          "protein_id": "ENSP00000456351.1",
          "transcript_support_level": 3,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 155,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 468,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000563840.1"
        },
        {
          "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": 3,
          "intron_rank": 1,
          "intron_rank_end": null,
          "gene_symbol": "ENSG00000260861",
          "gene_hgnc_id": null,
          "hgvs_c": "c.206-13265C>T",
          "hgvs_p": null,
          "transcript": "ENST00000566961.2",
          "protein_id": "ENSP00000457551.2",
          "transcript_support_level": 3,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 139,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 420,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000566961.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": 3,
          "intron_rank": 1,
          "intron_rank_end": null,
          "gene_symbol": "SIRPB1",
          "gene_hgnc_id": 15928,
          "hgvs_c": "c.77-4742C>T",
          "hgvs_p": null,
          "transcript": "ENST00000969010.1",
          "protein_id": "ENSP00000639069.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 62,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 189,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000969010.1"
        },
        {
          "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": 3,
          "intron_rank": 1,
          "intron_rank_end": null,
          "gene_symbol": "SIRPB1",
          "gene_hgnc_id": 15928,
          "hgvs_c": "c.65-4742C>T",
          "hgvs_p": null,
          "transcript": "ENST00000569629.1",
          "protein_id": "ENSP00000457323.1",
          "transcript_support_level": 5,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 58,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 177,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000569629.1"
        }
      ],
      "gene_symbol": "SIRPB1",
      "gene_hgnc_id": 15928,
      "dbsnp": "rs143614046",
      "frequency_reference_population": 0.000017346678,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 28,
      "gnomad_exomes_af": 0.000013681,
      "gnomad_genomes_af": 0.0000525424,
      "gnomad_exomes_ac": 20,
      "gnomad_genomes_ac": 8,
      "gnomad_exomes_homalt": 0,
      "gnomad_genomes_homalt": 0,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.19373971223831177,
      "computational_prediction_selected": "Benign",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.057,
      "revel_prediction": "Benign",
      "alphamissense_score": 0.1032,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.6,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": -0.131,
      "phylop100way_prediction": "Benign",
      "spliceai_max_score": 0,
      "spliceai_max_prediction": "Benign",
      "dbscsnv_ada_score": null,
      "dbscsnv_ada_prediction": null,
      "apogee2_score": null,
      "apogee2_prediction": null,
      "mitotip_score": null,
      "mitotip_prediction": null,
      "acmg_score": 0,
      "acmg_classification": "Uncertain_significance",
      "acmg_criteria": "PM2,BP4_Moderate",
      "acmg_by_gene": [
        {
          "score": 0,
          "benign_score": 2,
          "pathogenic_score": 2,
          "criteria": [
            "PM2",
            "BP4_Moderate"
          ],
          "verdict": "Uncertain_significance",
          "transcript": "NM_006065.5",
          "gene_symbol": "SIRPB1",
          "hgnc_id": 15928,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "",
          "hgvs_c": "c.880C>T",
          "hgvs_p": "p.Arg294Trp"
        },
        {
          "score": 0,
          "benign_score": 2,
          "pathogenic_score": 2,
          "criteria": [
            "PM2",
            "BP4_Moderate"
          ],
          "verdict": "Uncertain_significance",
          "transcript": "ENST00000564763.1",
          "gene_symbol": "ENSG00000260861",
          "hgnc_id": null,
          "effects": [
            "intron_variant"
          ],
          "inheritance_mode": "",
          "hgvs_c": "c.433+7329C>T",
          "hgvs_p": null
        }
      ],
      "clinvar_disease": "not specified",
      "clinvar_classification": "Uncertain significance",
      "clinvar_review_status": "criteria provided, single submitter",
      "clinvar_submissions_summary": "US:1",
      "phenotype_combined": "not specified",
      "pathogenicity_classification_combined": "Uncertain significance",
      "custom_annotations": null
    }
  ],
  "message": null
}