Clinical Trials Search (ClinicalTrials.gov) avatar

Clinical Trials Search (ClinicalTrials.gov)

Pricing

$1.00 / 1,000 study returneds

Go to Apify Store
Clinical Trials Search (ClinicalTrials.gov)

Clinical Trials Search (ClinicalTrials.gov)

Search and monitor clinical trials from ClinicalTrials.gov by condition, term, sponsor, or status. Phases, enrollment, sponsors, locations, and dates.

Pricing

$1.00 / 1,000 study returneds

Rating

0.0

(0)

Developer

Ken Agland

Ken Agland

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

a day ago

Last modified

Share

Search and monitor clinical trials from ClinicalTrials.gov by condition, term, sponsor, or status. Phases, enrollment, sponsors, locations, and dates.

What it does

  • Searches the official ClinicalTrials.gov v2 API (no API key needed).
  • Filters by full-text term, condition or disease, sponsor, and overall status.
  • Exports clean, flat records to a dataset plus an aggregate summary in OUTPUT.
  • Paginates automatically until it reaches your item limit or runs out of matches.

Input

At least one of searchTerm, condition, or sponsor is required.

FieldTypeDescription
searchTermstringFull-text search across titles, descriptions, interventions, and keywords.
conditionstringCondition or disease the trials study (for example "melanoma", "type 2 diabetes").
sponsorstringSponsor or collaborator name (for example "Pfizer").
statusesarrayOverall statuses to include: RECRUITING, NOT_YET_RECRUITING, ENROLLING_BY_INVITATION, ACTIVE_NOT_RECRUITING, COMPLETED, SUSPENDED, TERMINATED, WITHDRAWN, UNKNOWN. Empty means any status.
maxItemsintegerHow many trials to return (auto-paginated, max 1000). Default 50.

Example input, recruiting melanoma trials:

{
"condition": "melanoma",
"statuses": ["RECRUITING"],
"maxItems": 50
}

Output

Each dataset item is one trial:

{
"nctId": "NCT07086105",
"url": "https://clinicaltrials.gov/study/NCT07086105",
"title": "A Study to Evaluate Adze1.C in Participants With Metastatic Melanoma",
"officialTitle": "A Phase 1, Open-Label, Dose Escalation Study to Evaluate the Safety, Tolerability, Pharmacodynamics and Preliminary Efficacy of Intratumoural Adze1.C in Participants With Metastatic Melanoma",
"status": "RECRUITING",
"phases": ["PHASE1"],
"studyType": "INTERVENTIONAL",
"conditions": ["Metastatic Melanoma"],
"interventions": [{ "type": "DRUG", "name": "Adze1.C" }],
"leadSponsor": "Adze Biotechnology Australia Pty Ltd",
"sponsorClass": "INDUSTRY",
"enrollment": 30,
"startDate": "2025-10-01",
"completionDate": "2028-10-01",
"locationsCount": 3,
"countries": ["Australia"]
}

The run's default key-value store record OUTPUT holds an aggregate summary:

{
"query": { "searchTerm": null, "condition": "melanoma", "sponsor": null, "statuses": ["RECRUITING"] },
"totalMatched": 473,
"returned": 50,
"requestedMaxItems": 50,
"statusBreakdown": { "RECRUITING": 50 },
"generatedFrom": "https://clinicaltrials.gov/api/v2/studies"
}

Pricing

Pay per result, plus standard Apify platform usage.

Data source

The Actor calls the official ClinicalTrials.gov API v2 (https://clinicaltrials.gov/api/v2/studies), maintained by the US National Library of Medicine. The API is public and keyless. Requests are paginated at 100 studies per page; network errors and rate limit or server errors are retried with backoff.