← 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: 1-77918205-C-G (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "1",
      "pos": 77918205,
      "ref": "C",
      "alt": "G",
      "effect": "missense_variant",
      "transcript": "ENST00000334785.12",
      "consequences": [
        {
          "aa_ref": "R",
          "aa_alt": "G",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "NEXN",
          "gene_hgnc_id": 29557,
          "hgvs_c": "c.379C>G",
          "hgvs_p": "p.Arg127Gly",
          "transcript": "NM_144573.4",
          "protein_id": "NP_653174.3",
          "transcript_support_level": null,
          "aa_start": 127,
          "aa_end": null,
          "aa_length": 675,
          "cds_start": 379,
          "cds_end": null,
          "cds_length": 2028,
          "cdna_start": 567,
          "cdna_end": null,
          "cdna_length": 3282,
          "mane_select": "ENST00000334785.12",
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "R",
          "aa_alt": "G",
          "canonical": true,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "NEXN",
          "gene_hgnc_id": 29557,
          "hgvs_c": "c.379C>G",
          "hgvs_p": "p.Arg127Gly",
          "transcript": "ENST00000334785.12",
          "protein_id": "ENSP00000333938.7",
          "transcript_support_level": 1,
          "aa_start": 127,
          "aa_end": null,
          "aa_length": 675,
          "cds_start": 379,
          "cds_end": null,
          "cds_length": 2028,
          "cdna_start": 567,
          "cdna_end": null,
          "cdna_length": 3282,
          "mane_select": "NM_144573.4",
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "R",
          "aa_alt": "G",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 1,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "NEXN",
          "gene_hgnc_id": 29557,
          "hgvs_c": "c.76C>G",
          "hgvs_p": "p.Arg26Gly",
          "transcript": "ENST00000342754.5",
          "protein_id": "ENSP00000343928.5",
          "transcript_support_level": 1,
          "aa_start": 26,
          "aa_end": null,
          "aa_length": 575,
          "cds_start": 76,
          "cds_end": null,
          "cds_length": 1728,
          "cdna_start": 78,
          "cdna_end": null,
          "cdna_length": 2712,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "R",
          "aa_alt": "G",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 9,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "NEXN",
          "gene_hgnc_id": 29557,
          "hgvs_c": "c.187C>G",
          "hgvs_p": "p.Arg63Gly",
          "transcript": "ENST00000401035.7",
          "protein_id": "ENSP00000383814.3",
          "transcript_support_level": 1,
          "aa_start": 63,
          "aa_end": null,
          "aa_length": 320,
          "cds_start": 187,
          "cds_end": null,
          "cds_length": 964,
          "cdna_start": 486,
          "cdna_end": null,
          "cdna_length": 1263,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "R",
          "aa_alt": "G",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "NEXN",
          "gene_hgnc_id": 29557,
          "hgvs_c": "c.187C>G",
          "hgvs_p": "p.Arg63Gly",
          "transcript": "NM_001172309.2",
          "protein_id": "NP_001165780.1",
          "transcript_support_level": null,
          "aa_start": 63,
          "aa_end": null,
          "aa_length": 611,
          "cds_start": 187,
          "cds_end": null,
          "cds_length": 1836,
          "cdna_start": 375,
          "cdna_end": null,
          "cdna_length": 3090,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "R",
          "aa_alt": "G",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 12,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "NEXN",
          "gene_hgnc_id": 29557,
          "hgvs_c": "c.187C>G",
          "hgvs_p": "p.Arg63Gly",
          "transcript": "ENST00000330010.12",
          "protein_id": "ENSP00000327363.8",
          "transcript_support_level": 2,
          "aa_start": 63,
          "aa_end": null,
          "aa_length": 611,
          "cds_start": 187,
          "cds_end": null,
          "cds_length": 1836,
          "cdna_start": 484,
          "cdna_end": null,
          "cdna_length": 3195,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "R",
          "aa_alt": "G",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 10,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "NEXN",
          "gene_hgnc_id": 29557,
          "hgvs_c": "c.379C>G",
          "hgvs_p": "p.Arg127Gly",
          "transcript": "ENST00000440324.5",
          "protein_id": "ENSP00000411902.1",
          "transcript_support_level": 5,
          "aa_start": 127,
          "aa_end": null,
          "aa_length": 434,
          "cds_start": 379,
          "cds_end": null,
          "cds_length": 1306,
          "cdna_start": 529,
          "cdna_end": null,
          "cdna_length": 1456,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "R",
          "aa_alt": "G",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 14,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "NEXN",
          "gene_hgnc_id": 29557,
          "hgvs_c": "c.379C>G",
          "hgvs_p": "p.Arg127Gly",
          "transcript": "XM_005271322.5",
          "protein_id": "XP_005271379.1",
          "transcript_support_level": null,
          "aa_start": 127,
          "aa_end": null,
          "aa_length": 676,
          "cds_start": 379,
          "cds_end": null,
          "cds_length": 2031,
          "cdna_start": 567,
          "cdna_end": null,
          "cdna_length": 3201,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "R",
          "aa_alt": "G",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "NEXN",
          "gene_hgnc_id": 29557,
          "hgvs_c": "c.379C>G",
          "hgvs_p": "p.Arg127Gly",
          "transcript": "XM_005271323.5",
          "protein_id": "XP_005271380.1",
          "transcript_support_level": null,
          "aa_start": 127,
          "aa_end": null,
          "aa_length": 662,
          "cds_start": 379,
          "cds_end": null,
          "cds_length": 1989,
          "cdna_start": 567,
          "cdna_end": null,
          "cdna_length": 3159,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "R",
          "aa_alt": "G",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "NEXN",
          "gene_hgnc_id": 29557,
          "hgvs_c": "c.187C>G",
          "hgvs_p": "p.Arg63Gly",
          "transcript": "XM_005271324.6",
          "protein_id": "XP_005271381.1",
          "transcript_support_level": null,
          "aa_start": 63,
          "aa_end": null,
          "aa_length": 612,
          "cds_start": 187,
          "cds_end": null,
          "cds_length": 1839,
          "cdna_start": 375,
          "cdna_end": null,
          "cdna_length": 3009,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "R",
          "aa_alt": "G",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 13,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "NEXN",
          "gene_hgnc_id": 29557,
          "hgvs_c": "c.379C>G",
          "hgvs_p": "p.Arg127Gly",
          "transcript": "XM_005271325.5",
          "protein_id": "XP_005271382.1",
          "transcript_support_level": null,
          "aa_start": 127,
          "aa_end": null,
          "aa_length": 602,
          "cds_start": 379,
          "cds_end": null,
          "cds_length": 1809,
          "cdna_start": 567,
          "cdna_end": null,
          "cdna_length": 2979,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        },
        {
          "aa_ref": "R",
          "aa_alt": "G",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 5,
          "exon_rank_end": null,
          "exon_count": 11,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "NEXN",
          "gene_hgnc_id": 29557,
          "hgvs_c": "c.379C>G",
          "hgvs_p": "p.Arg127Gly",
          "transcript": "XM_005271327.5",
          "protein_id": "XP_005271384.1",
          "transcript_support_level": null,
          "aa_start": 127,
          "aa_end": null,
          "aa_length": 537,
          "cds_start": 379,
          "cds_end": null,
          "cds_length": 1614,
          "cdna_start": 567,
          "cdna_end": null,
          "cdna_length": 2784,
          "mane_select": null,
          "mane_plus": null,
          "biotype": null,
          "feature": null
        }
      ],
      "gene_symbol": "NEXN",
      "gene_hgnc_id": 29557,
      "dbsnp": "rs771113424",
      "frequency_reference_population": 6.8408343e-7,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 1,
      "gnomad_exomes_af": 6.84083e-7,
      "gnomad_genomes_af": null,
      "gnomad_exomes_ac": 1,
      "gnomad_genomes_ac": null,
      "gnomad_exomes_homalt": 0,
      "gnomad_genomes_homalt": null,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.3738182783126831,
      "computational_prediction_selected": "Benign",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.19,
      "revel_prediction": "Benign",
      "alphamissense_score": 0.5688,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.16,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": 4.02,
      "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": 1,
      "acmg_classification": "Uncertain_significance",
      "acmg_criteria": "PM2,BP4",
      "acmg_by_gene": [
        {
          "score": 1,
          "benign_score": 1,
          "pathogenic_score": 2,
          "criteria": [
            "PM2",
            "BP4"
          ],
          "verdict": "Uncertain_significance",
          "transcript": "ENST00000334785.12",
          "gene_symbol": "NEXN",
          "hgnc_id": 29557,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AD",
          "hgvs_c": "c.379C>G",
          "hgvs_p": "p.Arg127Gly"
        }
      ],
      "clinvar_disease": "",
      "clinvar_classification": "",
      "clinvar_review_status": "",
      "clinvar_submissions_summary": "",
      "phenotype_combined": null,
      "pathogenicity_classification_combined": null,
      "custom_annotations": null
    }
  ],
  "message": null
}