# 🔬 ClinicalTrials Scraper — Studies, Sponsors & Phases

**Use case:** 

No-code, cheap ClinicalTrials.gov API. Scrape trial data: NCT ID, title, status, phases, conditions, interventions, sponsors, locations — cheapest per item.

## Input

```json
{
  "queries": [
    "lung cancer"
  ],
  "statuses": [
    "RECRUITING"
  ],
  "maxResultsPerQuery": 100,
  "includeLocations": true
}
```

## Output

```json
{
  "searchTerm": {
    "label": "Search Term",
    "format": "text"
  },
  "nctId": {
    "label": "Nct Id",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "briefTitle": {
    "label": "Brief Title",
    "format": "text"
  },
  "officialTitle": {
    "label": "Official Title",
    "format": "text"
  },
  "overallStatus": {
    "label": "Overall Status",
    "format": "text"
  },
  "studyType": {
    "label": "Study Type",
    "format": "text"
  },
  "phases": {
    "label": "Phases",
    "format": "text"
  },
  "conditions": {
    "label": "Conditions",
    "format": "text"
  },
  "interventions": {
    "label": "Interventions",
    "format": "text"
  },
  "leadSponsor": {
    "label": "Lead Sponsor",
    "format": "text"
  },
  "sponsorClass": {
    "label": "Sponsor Class",
    "format": "text"
  },
  "collaborators": {
    "label": "Collaborators",
    "format": "text"
  },
  "enrollmentCount": {
    "label": "Enrollment Count",
    "format": "number"
  },
  "enrollmentType": {
    "label": "Enrollment Type",
    "format": "text"
  },
  "startDate": {
    "label": "Start Date",
    "format": "date"
  },
  "primaryCompletionDate": {
    "label": "Primary Completion Date",
    "format": "date"
  },
  "completionDate": {
    "label": "Completion Date",
    "format": "date"
  },
  "lastUpdateDate": {
    "label": "Last Update Date",
    "format": "date"
  },
  "briefSummary": {
    "label": "Brief Summary",
    "format": "text"
  },
  "sex": {
    "label": "Sex",
    "format": "text"
  },
  "minimumAge": {
    "label": "Minimum Age",
    "format": "text"
  },
  "maximumAge": {
    "label": "Maximum Age",
    "format": "text"
  },
  "healthyVolunteers": {
    "label": "Healthy Volunteers",
    "format": "boolean"
  },
  "primaryOutcomes": {
    "label": "Primary Outcomes",
    "format": "text"
  },
  "locationCount": {
    "label": "Location Count",
    "format": "number"
  },
  "locations": {
    "label": "Locations",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [ClinicalTrials.gov Scraper — Trial Intelligence](https://apify.com/hipersoft/clinicaltrials-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/hipersoft/clinicaltrials-scraper) to learn more, explore other use cases, and run it yourself.