Aller au contenu
GET /v1/study

A full study by NCT id

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/clinicaltrials-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}