← 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: 13-105472657-G-T (hg38)

Bash / cURL Example

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

API Response

json
{
  "variants": [
    {
      "chr": "13",
      "pos": 105472657,
      "ref": "G",
      "alt": "T",
      "effect": "missense_variant",
      "transcript": "NM_172370.5",
      "consequences": [
        {
          "aa_ref": "V",
          "aa_alt": "F",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DAOA",
          "gene_hgnc_id": 21191,
          "hgvs_c": "c.253G>T",
          "hgvs_p": "p.Val85Phe",
          "transcript": "NM_172370.5",
          "protein_id": "NP_758958.3",
          "transcript_support_level": null,
          "aa_start": 85,
          "aa_end": null,
          "aa_length": 153,
          "cds_start": 253,
          "cds_end": null,
          "cds_length": 462,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "ENST00000375936.9",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_172370.5"
        },
        {
          "aa_ref": "V",
          "aa_alt": "F",
          "canonical": true,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DAOA",
          "gene_hgnc_id": 21191,
          "hgvs_c": "c.253G>T",
          "hgvs_p": "p.Val85Phe",
          "transcript": "ENST00000375936.9",
          "protein_id": "ENSP00000365103.3",
          "transcript_support_level": 1,
          "aa_start": 85,
          "aa_end": null,
          "aa_length": 153,
          "cds_start": 253,
          "cds_end": null,
          "cds_length": 462,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": "NM_172370.5",
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000375936.9"
        },
        {
          "aa_ref": "V",
          "aa_alt": "F",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DAOA",
          "gene_hgnc_id": 21191,
          "hgvs_c": "c.40G>T",
          "hgvs_p": "p.Val14Phe",
          "transcript": "ENST00000329625.9",
          "protein_id": "ENSP00000329951.5",
          "transcript_support_level": 1,
          "aa_start": 14,
          "aa_end": null,
          "aa_length": 82,
          "cds_start": 40,
          "cds_end": null,
          "cds_length": 249,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000329625.9"
        },
        {
          "aa_ref": "G",
          "aa_alt": "G",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DAOA",
          "gene_hgnc_id": 21191,
          "hgvs_c": "c.60G>T",
          "hgvs_p": "p.Gly20Gly",
          "transcript": "ENST00000595812.2",
          "protein_id": "ENSP00000469539.1",
          "transcript_support_level": 1,
          "aa_start": 20,
          "aa_end": null,
          "aa_length": 125,
          "cds_start": 60,
          "cds_end": null,
          "cds_length": 378,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000595812.2"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": true,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DAOA",
          "gene_hgnc_id": 21191,
          "hgvs_c": "n.*174G>T",
          "hgvs_p": null,
          "transcript": "ENST00000471432.3",
          "protein_id": "ENSP00000472857.1",
          "transcript_support_level": 1,
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000471432.3"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DAOA",
          "gene_hgnc_id": 21191,
          "hgvs_c": "n.253G>T",
          "hgvs_p": null,
          "transcript": "ENST00000473269.5",
          "protein_id": "ENSP00000470244.1",
          "transcript_support_level": 1,
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000473269.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DAOA",
          "gene_hgnc_id": 21191,
          "hgvs_c": "n.40G>T",
          "hgvs_p": null,
          "transcript": "ENST00000488534.5",
          "protein_id": "ENSP00000471091.1",
          "transcript_support_level": 1,
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000488534.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DAOA",
          "gene_hgnc_id": 21191,
          "hgvs_c": "n.*56G>T",
          "hgvs_p": null,
          "transcript": "ENST00000489237.6",
          "protein_id": "ENSP00000472676.1",
          "transcript_support_level": 1,
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000489237.6"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DAOA",
          "gene_hgnc_id": 21191,
          "hgvs_c": "n.40G>T",
          "hgvs_p": null,
          "transcript": "ENST00000559369.5",
          "protein_id": "ENSP00000453831.1",
          "transcript_support_level": 1,
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000559369.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DAOA",
          "gene_hgnc_id": 21191,
          "hgvs_c": "n.40G>T",
          "hgvs_p": null,
          "transcript": "ENST00000600388.5",
          "protein_id": "ENSP00000472260.1",
          "transcript_support_level": 1,
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000600388.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "non_coding_transcript_exon_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DAOA",
          "gene_hgnc_id": 21191,
          "hgvs_c": "n.253G>T",
          "hgvs_p": null,
          "transcript": "ENST00000601240.5",
          "protein_id": "ENSP00000471306.1",
          "transcript_support_level": 1,
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000601240.5"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": true,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DAOA",
          "gene_hgnc_id": 21191,
          "hgvs_c": "n.*174G>T",
          "hgvs_p": null,
          "transcript": "ENST00000471432.3",
          "protein_id": "ENSP00000472857.1",
          "transcript_support_level": 1,
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000471432.3"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": true,
          "consequences": [
            "3_prime_UTR_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DAOA",
          "gene_hgnc_id": 21191,
          "hgvs_c": "n.*56G>T",
          "hgvs_p": null,
          "transcript": "ENST00000489237.6",
          "protein_id": "ENSP00000472676.1",
          "transcript_support_level": 1,
          "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": "nonsense_mediated_decay",
          "feature": "ENST00000489237.6"
        },
        {
          "aa_ref": "V",
          "aa_alt": "F",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 4,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DAOA",
          "gene_hgnc_id": 21191,
          "hgvs_c": "c.253G>T",
          "hgvs_p": "p.Val85Phe",
          "transcript": "ENST00000618629.1",
          "protein_id": "ENSP00000483757.1",
          "transcript_support_level": 5,
          "aa_start": 85,
          "aa_end": null,
          "aa_length": 153,
          "cds_start": 253,
          "cds_end": null,
          "cds_length": 462,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "ENST00000618629.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "F",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DAOA",
          "gene_hgnc_id": 21191,
          "hgvs_c": "c.253G>T",
          "hgvs_p": "p.Val85Phe",
          "transcript": "NM_001384644.1",
          "protein_id": "NP_001371573.1",
          "transcript_support_level": null,
          "aa_start": 85,
          "aa_end": null,
          "aa_length": 126,
          "cds_start": 253,
          "cds_end": null,
          "cds_length": 381,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001384644.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "F",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 6,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DAOA",
          "gene_hgnc_id": 21191,
          "hgvs_c": "c.40G>T",
          "hgvs_p": "p.Val14Phe",
          "transcript": "NM_001161814.1",
          "protein_id": "NP_001155286.1",
          "transcript_support_level": null,
          "aa_start": 14,
          "aa_end": null,
          "aa_length": 82,
          "cds_start": 40,
          "cds_end": null,
          "cds_length": 249,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001161814.1"
        },
        {
          "aa_ref": "V",
          "aa_alt": "F",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "missense_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DAOA",
          "gene_hgnc_id": 21191,
          "hgvs_c": "c.40G>T",
          "hgvs_p": "p.Val14Phe",
          "transcript": "NM_001384646.1",
          "protein_id": "NP_001371575.1",
          "transcript_support_level": null,
          "aa_start": 14,
          "aa_end": null,
          "aa_length": 82,
          "cds_start": 40,
          "cds_end": null,
          "cds_length": 249,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001384646.1"
        },
        {
          "aa_ref": "G",
          "aa_alt": "G",
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "synonymous_variant"
          ],
          "exon_rank": 3,
          "exon_rank_end": null,
          "exon_count": 5,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DAOA",
          "gene_hgnc_id": 21191,
          "hgvs_c": "c.60G>T",
          "hgvs_p": "p.Gly20Gly",
          "transcript": "NM_001161812.1",
          "protein_id": "NP_001155284.1",
          "transcript_support_level": null,
          "aa_start": 20,
          "aa_end": null,
          "aa_length": 125,
          "cds_start": 60,
          "cds_end": null,
          "cds_length": 378,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001161812.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": true,
          "strand": true,
          "consequences": [
            "5_prime_UTR_variant"
          ],
          "exon_rank": 4,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": null,
          "intron_rank_end": null,
          "gene_symbol": "DAOA",
          "gene_hgnc_id": 21191,
          "hgvs_c": "c.-49G>T",
          "hgvs_p": null,
          "transcript": "NM_001384645.1",
          "protein_id": "NP_001371574.1",
          "transcript_support_level": null,
          "aa_start": null,
          "aa_end": null,
          "aa_length": 84,
          "cds_start": null,
          "cds_end": null,
          "cds_length": 255,
          "cdna_start": null,
          "cdna_end": null,
          "cdna_length": null,
          "mane_select": null,
          "mane_plus": null,
          "biotype": "protein_coding",
          "feature": "NM_001384645.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": 4,
          "intron_rank_end": null,
          "gene_symbol": "DAOA-AS1",
          "gene_hgnc_id": 30243,
          "hgvs_c": "n.506-6237C>A",
          "hgvs_p": null,
          "transcript": "ENST00000448407.1",
          "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": "ENST00000448407.1"
        },
        {
          "aa_ref": null,
          "aa_alt": null,
          "canonical": false,
          "protein_coding": false,
          "strand": false,
          "consequences": [
            "intron_variant"
          ],
          "exon_rank": null,
          "exon_rank_end": null,
          "exon_count": 7,
          "intron_rank": 4,
          "intron_rank_end": null,
          "gene_symbol": "DAOA-AS1",
          "gene_hgnc_id": 30243,
          "hgvs_c": "n.506-6237C>A",
          "hgvs_p": null,
          "transcript": "NR_040247.1",
          "protein_id": null,
          "transcript_support_level": null,
          "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": "NR_040247.1"
        }
      ],
      "gene_symbol": "DAOA",
      "gene_hgnc_id": 21191,
      "dbsnp": "rs367543079",
      "frequency_reference_population": null,
      "hom_count_reference_population": 0,
      "allele_count_reference_population": 0,
      "gnomad_exomes_af": null,
      "gnomad_genomes_af": null,
      "gnomad_exomes_ac": null,
      "gnomad_genomes_ac": null,
      "gnomad_exomes_homalt": null,
      "gnomad_genomes_homalt": null,
      "gnomad_mito_homoplasmic": null,
      "gnomad_mito_heteroplasmic": null,
      "computational_score_selected": 0.10387542843818665,
      "computational_prediction_selected": "Benign",
      "computational_source_selected": "MetaRNN",
      "splice_score_selected": 0,
      "splice_prediction_selected": "Benign",
      "splice_source_selected": "max_spliceai",
      "revel_score": 0.076,
      "revel_prediction": "Benign",
      "alphamissense_score": 0.323,
      "alphamissense_prediction": null,
      "bayesdelnoaf_score": -0.55,
      "bayesdelnoaf_prediction": "Benign",
      "phylop100way_score": -1.819,
      "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_172370.5",
          "gene_symbol": "DAOA",
          "hgnc_id": 21191,
          "effects": [
            "missense_variant"
          ],
          "inheritance_mode": "AR",
          "hgvs_c": "c.253G>T",
          "hgvs_p": "p.Val85Phe"
        },
        {
          "score": 0,
          "benign_score": 2,
          "pathogenic_score": 2,
          "criteria": [
            "PM2",
            "BP4_Moderate"
          ],
          "verdict": "Uncertain_significance",
          "transcript": "ENST00000448407.1",
          "gene_symbol": "DAOA-AS1",
          "hgnc_id": 30243,
          "effects": [
            "intron_variant"
          ],
          "inheritance_mode": "",
          "hgvs_c": "n.506-6237C>A",
          "hgvs_p": null
        }
      ],
      "clinvar_disease": "not provided",
      "clinvar_classification": "not provided",
      "clinvar_review_status": "no classification provided",
      "clinvar_submissions_summary": "O:1",
      "phenotype_combined": "not provided",
      "pathogenicity_classification_combined": "not provided",
      "custom_annotations": null
    }
  ],
  "message": null
}