Retrieve Variant Cancers for a Variant Identifier

get

/HSDataService-web/api/3.2.0/variants/{id}/cancer

This endpoint supports the retrieval of Variant Cancers for a Variant Identifier. It retuns Variant Cancer information like HUGO Name, Transcript Identifier, Assembly/Alignment Name, Ensembl Version, Amino Acid Change and other Variant Cancer associated information.

Request

Supported Media Types
  • application/json
  • application/xml
Path Parameters
id
Type: integer (int64)
Required: true
Variant Row ID

Response

Supported Media Types
  • application/json
  • application/xml
200 Response
successful operation
Body
Root Schema : VariantCancers
Type: object
Nested Schema : cancerVariant
Type: array
List of Variant Cancers
Nested Schema : Identifier
Type: object
Identifier assigned by a given system
Nested Schema : LinkedReference
Type: object
Nested Schema : VariantCancer
Type: object
400 Response
Variant Id is not supplied

Examples

The following example submits a GET request.

API URL

http://localhost:7001/HSDataService-web/api/3.2.0/variants/7678/cancer

Example of Response Body

The following example shows the response returned in JSON format.

{
  "resourceType" : "CancerVariants",
  "identifier" : {
    "system" : "ODB",
    "value" : "7678"
  },
  "cancerVariant" : [ {
    "primaryHistology" : "carcinoma",
    "histologySubtype" : "adenocarcinoma",
    "siteSubType" : "large_intestine",
    "anatomicalSubtype" : "colon",
    "hugoName" : "SAMD11",
    "accession" : "ENST00000342066",
    "hgncId" : "28706",
    "mutationSomaticStatus" : "Variant of unknown origin",
    "referenceID" : "COSM1344644",
    "zygosity" : "het",
    "gwScreen" : "y",
    "coding" : "Y",
    "curationSource" : "COSMIC",
    "version" : "COSMIC.V67",
    "assembly" : "GRCh37"
  }, {
    "primaryHistology" : "carcinoma",
    "histologySubtype" : "NS",
    "siteSubType" : "liver",
    "anatomicalSubtype" : "NS",
    "hugoName" : "SAMD11",
    "accession" : "ENST00000342066",
    "hgncId" : "28706",
    "mutationSomaticStatus" : "Variant of unknown origin",
    "referenceID" : "COSM1344644",
    "zygosity" : "het",
    "gwScreen" : "y",
    "coding" : "Y",
    "curationSource" : "COSMIC",
    "version" : "COSMIC.V67",
    "assembly" : "GRCh37"
  } ],
  "variantReferences" : {
    "reference" : "/HSDataService-web/api/3.2.0/variants/7678"
  }
}