← 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: 11-126424650-T-A (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "11",
      "pos": 126424650,
      "ref": "T",
      "alt": "A",
      "effect": "missense_variant",
      "transcript": "NM_001441252.1",
      "consequences": [
        {
          "aa_ref": "H",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "KIRREL3",
          "gene_hgnc_id": 23204,
          "hgvs_c": "c.2267A>T",
          "hgvs_p": "p.His756Leu",
          "transcript": "NM_032531.4",
          "protein_id": "NP_115920.1",
          "transcript_support_level": null,
          "aa_start": 756,
          "aa_end": null,
          "aa_length": 778,
          "cds_start": 2267,
          "cds_end": null,
          "cds_length": 2337,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000525144.7",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_032531.4"
        },
        {
          "aa_ref": "H",
          "aa_alt": "L",
          "canonical": true,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "KIRREL3",
          "gene_hgnc_id": 23204,
          "hgvs_c": "c.2267A>T",
          "hgvs_p": "p.His756Leu",
          "transcript": "ENST00000525144.7",
          "protein_id": "ENSP00000435466.2",
          "transcript_support_level": 1,
          "aa_start": 756,
          "aa_end": null,
          "aa_length": 778,
          "cds_start": 2267,
          "cds_end": null,
          "cds_length": 2337,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_032531.4",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000525144.7"
        },
        {
          "aa_ref": "H",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "KIRREL3",
          "gene_hgnc_id": 23204,
          "hgvs_c": "c.2231A>T",
          "hgvs_p": "p.His744Leu",
          "transcript": "ENST00000529097.6",
          "protein_id": "ENSP00000434081.2",
          "transcript_support_level": 1,
          "aa_start": 744,
          "aa_end": null,
          "aa_length": 766,
          "cds_start": 2231,
          "cds_end": null,
          "cds_length": 2301,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000529097.6"
        },
        {
          "aa_ref": "H",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "KIRREL3",
          "gene_hgnc_id": 23204,
          "hgvs_c": "c.2375A>T",
          "hgvs_p": "p.His792Leu",
          "transcript": "NM_001441252.1",
          "protein_id": "NP_001428181.1",
          "transcript_support_level": null,
          "aa_start": 792,
          "aa_end": null,
          "aa_length": 814,
          "cds_start": 2375,
          "cds_end": null,
          "cds_length": 2445,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001441252.1"
        },
        {
          "aa_ref": "H",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "KIRREL3",
          "gene_hgnc_id": 23204,
          "hgvs_c": "c.2342A>T",
          "hgvs_p": "p.His781Leu",
          "transcript": "NM_001441253.1",
          "protein_id": "NP_001428182.1",
          "transcript_support_level": null,
          "aa_start": 781,
          "aa_end": null,
          "aa_length": 803,
          "cds_start": 2342,
          "cds_end": null,
          "cds_length": 2412,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001441253.1"
        },
        {
          "aa_ref": "H",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "KIRREL3",
          "gene_hgnc_id": 23204,
          "hgvs_c": "c.2306A>T",
          "hgvs_p": "p.His769Leu",
          "transcript": "NM_001441251.1",
          "protein_id": "NP_001428180.1",
          "transcript_support_level": null,
          "aa_start": 769,
          "aa_end": null,
          "aa_length": 791,
          "cds_start": 2306,
          "cds_end": null,
          "cds_length": 2376,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001441251.1"
        },
        {
          "aa_ref": "H",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "KIRREL3",
          "gene_hgnc_id": 23204,
          "hgvs_c": "c.2306A>T",
          "hgvs_p": "p.His769Leu",
          "transcript": "NM_001441254.1",
          "protein_id": "NP_001428183.1",
          "transcript_support_level": null,
          "aa_start": 769,
          "aa_end": null,
          "aa_length": 791,
          "cds_start": 2306,
          "cds_end": null,
          "cds_length": 2376,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001441254.1"
        },
        {
          "aa_ref": "H",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "KIRREL3",
          "gene_hgnc_id": 23204,
          "hgvs_c": "c.2300A>T",
          "hgvs_p": "p.His767Leu",
          "transcript": "NM_001441255.1",
          "protein_id": "NP_001428184.1",
          "transcript_support_level": null,
          "aa_start": 767,
          "aa_end": null,
          "aa_length": 789,
          "cds_start": 2300,
          "cds_end": null,
          "cds_length": 2370,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001441255.1"
        },
        {
          "aa_ref": "H",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "KIRREL3",
          "gene_hgnc_id": 23204,
          "hgvs_c": "c.2270A>T",
          "hgvs_p": "p.His757Leu",
          "transcript": "NM_001441256.1",
          "protein_id": "NP_001428185.1",
          "transcript_support_level": null,
          "aa_start": 757,
          "aa_end": null,
          "aa_length": 779,
          "cds_start": 2270,
          "cds_end": null,
          "cds_length": 2340,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001441256.1"
        },
        {
          "aa_ref": "H",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "KIRREL3",
          "gene_hgnc_id": 23204,
          "hgvs_c": "c.2267A>T",
          "hgvs_p": "p.His756Leu",
          "transcript": "NM_001441257.1",
          "protein_id": "NP_001428186.1",
          "transcript_support_level": null,
          "aa_start": 756,
          "aa_end": null,
          "aa_length": 778,
          "cds_start": 2267,
          "cds_end": null,
          "cds_length": 2337,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001441257.1"
        },
        {
          "aa_ref": "H",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 18,
          "exon_rank_end": null,
          "exon_count": 18,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "KIRREL3",
          "gene_hgnc_id": 23204,
          "hgvs_c": "c.2267A>T",
          "hgvs_p": "p.His756Leu",
          "transcript": "NM_001441258.1",
          "protein_id": "NP_001428187.1",
          "transcript_support_level": null,
          "aa_start": 756,
          "aa_end": null,
          "aa_length": 778,
          "cds_start": 2267,
          "cds_end": null,
          "cds_length": 2337,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001441258.1"
        },
        {
          "aa_ref": "H",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "KIRREL3",
          "gene_hgnc_id": 23204,
          "hgvs_c": "c.2231A>T",
          "hgvs_p": "p.His744Leu",
          "transcript": "NM_001301097.2",
          "protein_id": "NP_001288026.1",
          "transcript_support_level": null,
          "aa_start": 744,
          "aa_end": null,
          "aa_length": 766,
          "cds_start": 2231,
          "cds_end": null,
          "cds_length": 2301,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001301097.2"
        },
        {
          "aa_ref": "H",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 17,
          "exon_rank_end": null,
          "exon_count": 17,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "KIRREL3",
          "gene_hgnc_id": 23204,
          "hgvs_c": "c.2225A>T",
          "hgvs_p": "p.His742Leu",
          "transcript": "NM_001441259.1",
          "protein_id": "NP_001428188.1",
          "transcript_support_level": null,
          "aa_start": 742,
          "aa_end": null,
          "aa_length": 764,
          "cds_start": 2225,
          "cds_end": null,
          "cds_length": 2295,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001441259.1"
        },
        {
          "aa_ref": "H",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 16,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "KIRREL3",
          "gene_hgnc_id": 23204,
          "hgvs_c": "c.2189A>T",
          "hgvs_p": "p.His730Leu",
          "transcript": "NM_001441260.1",
          "protein_id": "NP_001428189.1",
          "transcript_support_level": null,
          "aa_start": 730,
          "aa_end": null,
          "aa_length": 752,
          "cds_start": 2189,
          "cds_end": null,
          "cds_length": 2259,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001441260.1"
        },
        {
          "aa_ref": "H",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "KIRREL3",
          "gene_hgnc_id": 23204,
          "hgvs_c": "c.2123A>T",
          "hgvs_p": "p.His708Leu",
          "transcript": "NM_001441261.1",
          "protein_id": "NP_001428190.1",
          "transcript_support_level": null,
          "aa_start": 708,
          "aa_end": null,
          "aa_length": 730,
          "cds_start": 2123,
          "cds_end": null,
          "cds_length": 2193,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001441261.1"
        },
        {
          "aa_ref": "H",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 15,
          "exon_rank_end": null,
          "exon_count": 15,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "KIRREL3",
          "gene_hgnc_id": 23204,
          "hgvs_c": "c.2081A>T",
          "hgvs_p": "p.His694Leu",
          "transcript": "NM_001441262.1",
          "protein_id": "NP_001428191.1",
          "transcript_support_level": null,
          "aa_start": 694,
          "aa_end": null,
          "aa_length": 716,
          "cds_start": 2081,
          "cds_end": null,
          "cds_length": 2151,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001441262.1"
        },
        {
          "aa_ref": "H",
          "aa_alt": "L",
          "canonical": false,
          "protein_coding": true,
          "strand": false,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 13,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "KIRREL3",
          "gene_hgnc_id": 23204,
          "hgvs_c": "c.1700A>T",
          "hgvs_p": "p.His567Leu",
          "transcript": "XM_047427715.1",
          "protein_id": "XP_047283671.1",
          "transcript_support_level": null,
          "aa_start": 567,
          "aa_end": null,
          "aa_length": 589,
          "cds_start": 1700,
          "cds_end": null,
          "cds_length": 1770,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "XM_047427715.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": 6,
          "intron_rank_end": null,
          "gene_symbol": "ST3GAL4",
          "gene_hgnc_id": 10864,
          "hgvs_c": "n.629+15239T>A",
          "hgvs_p": null,
          "transcript": "ENST00000524834.5",
          "protein_id": null,
          "transcript_support_level": 2,
          "aa_start": null,
          "aa_end": null,
          "aa_length": null,
          "cds_start": null,
          "cds_end": null,
          "cds_length": null,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "pseudogene",
          "feature": "ENST00000524834.5"
        }
      ],
      "gene_symbol": "KIRREL3",
      "gene_hgnc_id": 23204,
      "dbsnp": "rs368525135",
      "frequency_reference_population": 0.0000066302446,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 1,
      "gnomad_exomes_af": null,
      "gnomad_genomes_af": 0.00000663024,
      "gnomad_exomes_ac": null,
      "gnomad_genomes_ac": 1,
      "gnomad_exomes_homalt": null,
      "gnomad_genomes_homalt": 0,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.1669834852218628,
      "computational_prediction_selected": "Benign",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.111,
      "revel_prediction": "Benign",
      "alphamissense_score": 0.1185,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.38,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": 7.448,
      "phylop100way_prediction": "Uncertain_significance",
      "spliceai_max_score": 0,
      "spliceai_max_prediction": "Benign",
      "dbscsnv_ada_score": null,
      "dbscsnv_ada_prediction": null,
      "apogee2_score": null,
      "apogee2_prediction": null,
      "mitotip_score": null,
      "mitotip_prediction": null,
      "acmg_score": 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_001441252.1",
          "gene_symbol": "KIRREL3",
          "hgnc_id": 23204,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AD,Unknown",
          "hgvs_c": "c.2375A>T",
          "hgvs_p": "p.His792Leu"
        },
        {
          "score": 0,
          "benign_score": 2,
          "pathogenic_score": 2,
          "criteria": [
            "PM2",
            "BP4_Moderate"
          ],
          "verdict": "Uncertain_significance",
          "transcript": "ENST00000524834.5",
          "gene_symbol": "ST3GAL4",
          "hgnc_id": 10864,
          "effects": [
            "intron_variant"
          ],
          "inheritance_mode": "AR",
          "hgvs_c": "n.629+15239T>A",
          "hgvs_p": null
        }
      ],
      "clinvar_disease": "",
      "clinvar_classification": "",
      "clinvar_review_status": "",
      "clinvar_submissions_summary": "",
      "phenotype_combined": null,
      "pathogenicity_classification_combined": null,
      "custom_annotations": null
    }
  ],
  "message": null
}