# ClinicalTrials Breast Cancer Phase 3 Scraper

**Use case:** 

Scrape ClinicalTrials.gov phase 3 breast cancer trials with NCT ID, title, status, conditions, interventions, sponsor, and locations. Export JSON/CSV.

## Input

```json
{
  "startUrl": "https://clinicaltrials.gov/search",
  "maxItems": 50,
  "condition": "breast cancer",
  "studyStatusFilter": "all",
  "sex": "all",
  "ageRangeFromUnit": "years",
  "ageRangeToUnit": "years",
  "phases": [
    "phase3"
  ],
  "resultsAvailability": "any",
  "sortBy": "relevance"
}
```

## Output

```json
{
  "nctId": {
    "label": "NCT ID",
    "format": "text"
  },
  "briefTitle": {
    "label": "Title",
    "format": "text"
  },
  "studyUrl": {
    "label": "Link",
    "format": "link"
  },
  "briefSummary": {
    "label": "Summary",
    "format": "text"
  },
  "overallStatus": {
    "label": "Status",
    "format": "text"
  },
  "hasResults": {
    "label": "Has Results",
    "format": "boolean"
  },
  "studyType": {
    "label": "Study Type",
    "format": "text"
  },
  "phase": {
    "label": "Phase",
    "format": "text"
  },
  "leadSponsorName": {
    "label": "Lead Sponsor",
    "format": "text"
  },
  "leadSponsorClass": {
    "label": "Sponsor Class",
    "format": "text"
  },
  "conditions": {
    "label": "Conditions",
    "format": "array"
  },
  "interventions": {
    "label": "Interventions",
    "format": "array"
  },
  "primaryOutcomeMeasures": {
    "label": "Primary Outcomes",
    "format": "array"
  },
  "secondaryOutcomeMeasures": {
    "label": "Secondary Outcomes",
    "format": "array"
  },
  "locations": {
    "label": "Locations",
    "format": "array"
  },
  "enrollmentCount": {
    "label": "Enrollment",
    "format": "number"
  },
  "enrollmentType": {
    "label": "Enrollment Type",
    "format": "text"
  },
  "startDate": {
    "label": "Start Date",
    "format": "date"
  },
  "primaryCompletionDate": {
    "label": "Primary Completion",
    "format": "date"
  },
  "completionDate": {
    "label": "Completion Date",
    "format": "date"
  },
  "lastUpdatePostDate": {
    "label": "Last Update",
    "format": "date"
  },
  "gender": {
    "label": "Eligible Sex",
    "format": "text"
  },
  "minimumAge": {
    "label": "Min Age",
    "format": "text"
  },
  "maximumAge": {
    "label": "Max Age",
    "format": "text"
  },
  "standardAges": {
    "label": "Standard Ages",
    "format": "array"
  },
  "inclusionCriteria": {
    "label": "Inclusion Criteria",
    "format": "array"
  },
  "exclusionCriteria": {
    "label": "Exclusion Criteria",
    "format": "array"
  },
  "centralContacts": {
    "label": "Contact Info",
    "format": "array"
  },
  "collaborators": {
    "label": "Collaborators",
    "format": "array"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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