probe-gate
Retrieves all anatomy terms imported from the UBERON ontology, showing the anatomical structures referenced by Disease Ontology terms.
curl 'https://api.disease-ontology.org/v1/imports/anatomy'
import requests
resp = requests.get("https://api.disease-ontology.org/v1/imports/anatomy")
data = resp.json()
import zingu_apis
api = zingu_apis.api("disease-ontology-do-kb")
result = api.fetch("imports/{importName}")
for item in result:
print(item)
const resp = await fetch("https://api.disease-ontology.org/v1/imports/anatomy");
const data = await resp.json();