← 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: 16-56834768-G-T (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "16",
      "pos": 56834768,
      "ref": "G",
      "alt": "T",
      "effect": "missense_variant",
      "transcript": "ENST00000308159.10",
      "consequences": [
        {
          "aa_ref": "G",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "NUP93",
          "gene_hgnc_id": 28958,
          "hgvs_c": "c.1772G>T",
          "hgvs_p": "p.Gly591Val",
          "transcript": "NM_014669.5",
          "protein_id": "NP_055484.3",
          "transcript_support_level": null,
          "aa_start": 591,
          "aa_end": null,
          "aa_length": 819,
          "cds_start": 1772,
          "cds_end": null,
          "cds_length": 2460,
          "cdna_start": 1869,
          "cdna_end": null,
          "cdna_length": 8234,
          "mane_select": "ENST00000308159.10",
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "G",
          "aa_alt": "V",
          "canonical": true,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "NUP93",
          "gene_hgnc_id": 28958,
          "hgvs_c": "c.1772G>T",
          "hgvs_p": "p.Gly591Val",
          "transcript": "ENST00000308159.10",
          "protein_id": "ENSP00000310668.5",
          "transcript_support_level": 1,
          "aa_start": 591,
          "aa_end": null,
          "aa_length": 819,
          "cds_start": 1772,
          "cds_end": null,
          "cds_length": 2460,
          "cdna_start": 1869,
          "cdna_end": null,
          "cdna_length": 8234,
          "mane_select": "NM_014669.5",
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "G",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 23,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "NUP93",
          "gene_hgnc_id": 28958,
          "hgvs_c": "c.1772G>T",
          "hgvs_p": "p.Gly591Val",
          "transcript": "ENST00000569842.5",
          "protein_id": "ENSP00000458101.1",
          "transcript_support_level": 5,
          "aa_start": 591,
          "aa_end": null,
          "aa_length": 880,
          "cds_start": 1772,
          "cds_end": null,
          "cds_length": 2643,
          "cdna_start": 1868,
          "cdna_end": null,
          "cdna_length": 2834,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "G",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "NUP93",
          "gene_hgnc_id": 28958,
          "hgvs_c": "c.1403G>T",
          "hgvs_p": "p.Gly468Val",
          "transcript": "NM_001242795.2",
          "protein_id": "NP_001229724.1",
          "transcript_support_level": null,
          "aa_start": 468,
          "aa_end": null,
          "aa_length": 696,
          "cds_start": 1403,
          "cds_end": null,
          "cds_length": 2091,
          "cdna_start": 1861,
          "cdna_end": null,
          "cdna_length": 8226,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "G",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "NUP93",
          "gene_hgnc_id": 28958,
          "hgvs_c": "c.1403G>T",
          "hgvs_p": "p.Gly468Val",
          "transcript": "NM_001242796.2",
          "protein_id": "NP_001229725.1",
          "transcript_support_level": null,
          "aa_start": 468,
          "aa_end": null,
          "aa_length": 696,
          "cds_start": 1403,
          "cds_end": null,
          "cds_length": 2091,
          "cdna_start": 1892,
          "cdna_end": null,
          "cdna_length": 2921,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "G",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "NUP93",
          "gene_hgnc_id": 28958,
          "hgvs_c": "c.1403G>T",
          "hgvs_p": "p.Gly468Val",
          "transcript": "ENST00000542526.5",
          "protein_id": "ENSP00000440235.1",
          "transcript_support_level": 2,
          "aa_start": 468,
          "aa_end": null,
          "aa_length": 696,
          "cds_start": 1403,
          "cds_end": null,
          "cds_length": 2091,
          "cdna_start": 1892,
          "cdna_end": null,
          "cdna_length": 8257,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "G",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 14,
          "exon_rank_end": null,
          "exon_count": 20,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "NUP93",
          "gene_hgnc_id": 28958,
          "hgvs_c": "c.1403G>T",
          "hgvs_p": "p.Gly468Val",
          "transcript": "ENST00000564887.5",
          "protein_id": "ENSP00000458039.1",
          "transcript_support_level": 2,
          "aa_start": 468,
          "aa_end": null,
          "aa_length": 696,
          "cds_start": 1403,
          "cds_end": null,
          "cds_length": 2091,
          "cdna_start": 2032,
          "cdna_end": null,
          "cdna_length": 2875,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "G",
          "aa_alt": "V",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 16,
          "exon_rank_end": null,
          "exon_count": 22,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "NUP93",
          "gene_hgnc_id": 28958,
          "hgvs_c": "c.1772G>T",
          "hgvs_p": "p.Gly591Val",
          "transcript": "XM_005256263.4",
          "protein_id": "XP_005256320.1",
          "transcript_support_level": null,
          "aa_start": 591,
          "aa_end": null,
          "aa_length": 819,
          "cds_start": 1772,
          "cds_end": null,
          "cds_length": 2460,
          "cdna_start": 1912,
          "cdna_end": null,
          "cdna_length": 8277,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        }
      ],
      "gene_symbol": "NUP93",
      "gene_hgnc_id": 28958,
      "dbsnp": "rs145473779",
      "frequency_reference_population": 0.00014580406,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 235,
      "gnomad_exomes_af": 0.000146632,
      "gnomad_genomes_af": 0.000137869,
      "gnomad_exomes_ac": 214,
      "gnomad_genomes_ac": 21,
      "gnomad_exomes_homalt": 0,
      "gnomad_genomes_homalt": 0,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.8813515901565552,
      "computational_prediction_selected": "Pathogenic",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0.8899999856948853,
      "splice_prediction_selected": "Pathogenic",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.778,
      "revel_prediction": "Pathogenic",
      "alphamissense_score": 0.93,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": 0.34,
      "bayesdelnoaf_prediction": "Pathogenic",
      "phylop100way_score": 9.441,
      "phylop100way_prediction": "Pathogenic",
      "spliceai_max_score": 0.89,
      "spliceai_max_prediction": "Pathogenic",
      "dbscsnv_ada_score": null,
      "dbscsnv_ada_prediction": null,
      "apogee2_score": null,
      "apogee2_prediction": null,
      "mitotip_score": null,
      "mitotip_prediction": null,
      "acmg_score": 10,
      "acmg_classification": "Pathogenic",
      "acmg_criteria": "PP3_Moderate,PP5_Very_Strong",
      "acmg_by_gene": [
        {
          "score": 10,
          "benign_score": 0,
          "pathogenic_score": 10,
          "criteria": [
            "PP3_Moderate",
            "PP5_Very_Strong"
          ],
          "verdict": "Pathogenic",
          "transcript": "ENST00000308159.10",
          "gene_symbol": "NUP93",
          "hgnc_id": 28958,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AR,AD",
          "hgvs_c": "c.1772G>T",
          "hgvs_p": "p.Gly591Val"
        }
      ],
      "clinvar_disease": " type 12,Nephrotic syndrome,not provided",
      "clinvar_classification": "Pathogenic/Likely pathogenic",
      "clinvar_review_status": "criteria provided, multiple submitters, no conflicts",
      "clinvar_submissions_summary": "P:3 LP:4",
      "phenotype_combined": "Nephrotic syndrome, type 12|not provided|Nephrotic syndrome",
      "pathogenicity_classification_combined": "Pathogenic/Likely pathogenic",
      "custom_annotations": null
    }
  ],
  "message": null
}