Retrieve Diseases for a Variant Identifier

get

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

This endpoint supports the retrieval of Disease for a Variant Identifier. It returns Disease information like Disease Name, Mutation Type, Variant Type, Feature, Confidence, Curation Source, Ensembl Version, Assembly/Alignment Name and other Disease associated information.

Request

Supported Media Types
  • application/json
  • application/xml
Path Parameters
id
Type: integer (int64)
Required: true
Variant Row ID
Query Parameters
limit
Type: integer (int32)
Number of rows to return
offset
Type: integer (int32)
Row number to start from

Response

Supported Media Types
  • application/json
  • application/xml
200 Response
successful operation
Body
Model for paginated collections of data.
Root Schema : PageableCollectionDisease
Type: object
Model for paginated collections of data.
Nested Schema : items
Type: array
A collection of paged items.
Nested Schema : Disease
Type: object
Nested Schema : LinkedReference
Type: object
400 Response
Invalid parameters supplied
404 Response
Variant disease(s) not found

Examples

The following example submits a GET request.

API URL

http://localhost:7001/HSDataService-web/api/3.2.0/variants/536777/diseases

Example of Request Body

The following example shows the response returned in JSON format.

{
  "resourceType" : "DiseasesVariants",
  "items" : [ {
    "diseaseName" : "Zellweger syndrome",
    "mutationType" : "M",
    "variantType" : "DM",
    "feature" : "Zellweger syndrome:233A>G",
    "confidence" : "High",
    "curationSource" : "BIOBASE",
    "ensemblVersion" : "GRCH37.75",
    "assembly" : "GRCh37",
    "variantReferences" : {
      "reference" : "/HSDataService-web/api/3.2.0/variants/536777"
    }
  } ],
  "count" : 1,
  "hasMore" : false,
  "links" : [ {
    "rel" : "self",
    "href" : "http://localhost:7001/HSDataService-web/api/3.2.0/variants/536777/diseases"
  } ]
}