API
Introduction
The OncoKB™ data can be accessed through a REST API (Swagger Page). The API is defined and organized using swagger annotation. MAF file annotation is also possible by using OncoKB™ Annotator which is fully supported by using OncoKB™ REST APIs.
When you send API requests, you need a token before accessing the OncoKB™ data via its web API. Please visit OncoKB™ Data Access Page for more information about how to register an account and get an OncoKB™ API token.
Authentication
We are using standard Spring Security to protect all our services. In order to access the OncoKB™ data via its REST API, you need to specify your API token in the request header with
Authorization: Bearer [your token]
Your token will be available under your Account Settings after getting a license from the OncoKB™ Team.
OncoKB™ Instances
https://www.oncokb.org
This is the main instance and authenticated. If you have gotten a license from OncoKB™. Please use this instance for most accurate results.
https://demo.oncokb.org
Before committing to our license, you can use this website to test the API and other services freely. We included the full information of BRAF, TP53 and ROS1. The instance is not authenticated.
Annotation API Examples
If you have the access token and like to play around with our endpoints, please see the Swagger page. We only list GET methods here. They all have corresponding POST method available. Please see the Swagger page for more details.
Annotate Mutations by Protein Change
GET
https://www.oncokb.org/api/v1/annotate/mutations/byProteinChange
Query Parameters
Name | Type | Description |
---|---|---|
referenceGenome | string | Either GRCh37 or GRCh38. The default is GRCh37. |
hugoSymbol | string | The gene symbol used in Human Genome Organization. Example: BRAF |
entrezGeneId | integer | The entrez gene ID. (Higher priority than hugoSymbol). Example: 673 |
alteration | string | Protein Change. Example: V600E |
consequence | string | Consequence. Example: missense_variant |
proteinStart | integer | Protein Start. Example: 600 |
proteinEnd | integer | Protein End. Example: 600 |
tumorType | string | OncoTree(http://oncotree.mskcc.org) tumor type name. The field supports OncoTree Code, OncoTree Name and OncoTree Main type. Example: Melanoma |
Headers
Name | Type | Description |
---|---|---|
Authentication | string | OncoKB Token |
Curl Example
www.oncokb
demo.oncokb
Typical Use Cases
Missense mutation in an oncogene: BRAF, V600E, Melanoma
Missense mutation in a tumor suppressor: TP53, R273C, Colon Adenocarcinoma
In-frame deletion: BRAF, N486_P490del, Histiocytosis
Fusion: ROS1, CD74-ROS1 fusion, Lung Adenocarcinoma
Atypical Alterations
For atypical alterations, please also use this endpoint. For instance, but not limited to
vII
vIII
vV
CTD or C-terminal domain
KDD or Kinase Domain Duplication
ITD or Internal Tandem Duplication
MSI-H or Microsatellite Instability-High
TMB-H or Tumor Mutational Burden-High
Demo site does not have atypical alteration. Please use your authentication token for the following examples
EGFR vIII
MSI-H
Annotate Copy Number Alterations
GET
https://www.oncokb.org/api/v1/annotate/copyNumberAlterations
Query Parameters
Name | Type | Description |
---|---|---|
referenceGenome | string | Either GRCh37 or GRCh38. Default is GRCh37. |
copyNameAlterationType | string | Copy number alteration type. Available types: AMPLIFICATION, DELETION, GAIN, LOSS. |
entrezGeneId | integer | The entrez gene ID. (Higher priority than hugoSymbol). Example: 673. |
hugoSymbol | string | The gene symbol used in Human Genome Organization. Example: BRAF. |
tumorType | string | OncoTree(http://oncotree.mskcc.org) tumor type name. The field supports OncoTree Code, OncoTree Name and OncoTree Main type. Example: Melanoma. |
Headers
Name | Type | Description |
---|---|---|
Authentication | string | OncoKB Token provided by OncoKB website to registered and approved users. |
Curl Example
Annotate Structural Variants
GET
ttps://www.oncokb.org/api/v1/annotate/structuralVariants
Query Parameters
Name | Type | Description |
---|---|---|
referenceGenome | string | Either GRCh37 or GRCh38. The default is GRCh37. |
structuralVariantType | string | Structural variant type Available values : DELETION, TRANSLOCATION, DUPLICATION, INSERTION, INVERSION, FUSION, UNKNOWN |
isFunctionalFusion | boolean | Whether is functional fusion. Default value: false. |
hugoSymbolA | string | The gene symbol A used in Human Genome Organization. Example: ABL1 |
entrezGeneIdA | integer | The entrez gene ID A. (Higher priority than hugoSymbolA) Example: 25 |
hugoSymbolB | string | The gene symbol B used in Human Genome Organization. Example: BCR |
entrezGeneIdB | integer | The entrez gene ID B. (Higher priority than hugoSymbolB) Example: 613 |
tumorType | string | OncoTree(http://oncotree.mskcc.org) tumor type name. The field supports OncoTree Code, OncoTree Name and OncoTree Main type. Example: Melanoma |
Headers
Name | Type | Description |
---|---|---|
Authentication | string | OncoKB Token |
Curl Example
Annotate Mutations by Genomic Change
GET
https://www.oncokb.org/api/v1/annotate/mutations/byGenomicChange
Query Parameters
Name | Type | Description |
---|---|---|
referenceGenome | string | Either GRCh37 or GRCh38. The default is GRCh37. |
genomicaLocation | string | Genomic location. Example: 7,140453136,140453136,A,T |
tumorType | string | OncoTree(http://oncotree.mskcc.org) tumor type name. The field supports OncoTree Code, OncoTree Name and OncoTree Main type. Example: Melanoma |
Headers
Name | Type | Description |
---|---|---|
Authencitation | string | OncoKB token. |
Curl Example
Annotate Mutations by HGVSg
GET
ttps://www.oncokb.org/api/v1/annotate/mutations/byHGVSg
Query Parameters
Name | Type | Description |
---|---|---|
referenceGenome | string | Either GRCh37 or GRCh38. The default is GRCh37. |
hgvsg | string | HGVS genomic format. Example: 7:g.140453136A>T |
tumorType | string | OncoTree(http://oncotree.mskcc.org) tumor type name. The field supports OncoTree Code, OncoTree Name and OncoTree Main type. Example: Melanoma |
Headers
Name | Type | Description |
---|---|---|
Authentication | string | OncoKB Token |
Curl Example
Last updated