Skip to content

Commit

Permalink
Create curies.md
Browse files Browse the repository at this point in the history
  • Loading branch information
yakaboskic authored Nov 3, 2020
1 parent c1e508e commit 1e04f74
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions curies.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# Curies

Used to retrieve all CHP supported curies that can be specified in CHP queries.

**URL** : `/curies/`

**Method** : `GET`

**Auth required** : NO

## Success Response

**Code** : `200 OK`

**Content example**

Only a subset of curies are shown below.

```json
{
"chemical_substance": [
{
"name": "ZOLADEX",
"curie": "CHEMBL:CHEMBL1201247"
},
{
"name": "CYCLOPHOSPHAMIDE",
"curie": "CHEMBL:CHEMBL88"
},
],
"phenotypic_feature": [
{
"name": "survival_time",
"curie": "EFO:0000714"
}
],
"disease": [
{
"name": "breast_cancer",
"curie": "MONDO:0007254"
}
],
"gene": [
{
"name": "CLIP2",
"curie": "ENSEMBL:ENSG00000106665"
},
{
"name": "PI4KA",
"curie": "ENSEMBL:ENSG00000241973"
},
{
"name": "CELSR2",
"curie": "ENSEMBL:ENSG00000143126"
},
]
}
```

0 comments on commit 1e04f74

Please sign in to comment.