/v1/study
A full study by NCT id
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/clinicaltrials-api/v1/study" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/clinicaltrials-api/v1/study", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/clinicaltrials-api/v1/study");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/clinicaltrials-api/v1/study",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"study": {
"url": "https://clinicaltrials.gov/study/NCT00841061",
"title": "Cereals as a Source of Iron for Breastfed Infants",
"nct_id": "NCT00841061",
"phases": [
"NA"
],
"status": "COMPLETED",
"sponsor": "National Institutes of Health (NIH)",
"locations": [
{
"city": "Iowa City",
"state": "Iowa",
"country": "United States",
"facility": "University of Iowa"
}
],
"conditions": [
"Iron Deficiency"
],
"enrollment": 111,
"start_date": "2003-07",
"study_type": "INTERVENTIONAL",
"eligibility": {
"sex": "ALL",
"criteria": "Inclusion Criteria: * exclusively breastfed * birth weight between 2500 and 4200g * gestational age \\>36 weeks Exclusion Criteria: * supplementing formula * no iron drops",
"maximum_age": "1 Year",
"minimum_age": "28 Days",
"healthy_volunteers": true
},
"brief_summary": "The purpose of this research study is to determine whether the type of iron in infant cereals makes a differance in how well the cereal helps infants remain free of iron deficiency.",
"interventions": [
{
"name": "electrolytic iron",
"type": "DIETARY_SUPPLEMENT"
},
{
"name": "ferrous fumarate",
"type": "DIETARY_SUPPLEMENT"
}
],
"location_count": 1,
"official_title": "Breast Feeding and Iron: Comparison of Cereals Fortified With Different Forms of Iron",
"completion_date": "2006-05"
}
},
"meta": {
"timestamp": "2026-06-01T00:04:35.907Z",
"request_id": "45af7cac-18c5-489c-ad4b-7e8fda4e8926"
},
"status": "ok",
"message": "Study retrieved",
"success": true
}