# Scrape active NCI cancer research projects from NIH

**Use case:** 

Scrape currently active NCI-funded cancer projects from NIH RePORTER, FY2025 and FY2026: principal investigator, organization, state and award amount.

## Input

```json
{
  "searchType": "nihProjects",
  "searchQueries": [
    "artificial intelligence"
  ],
  "oppStatuses": "forecasted|posted",
  "includeOpportunityDetails": true,
  "fiscalYears": [
    "2025",
    "2026"
  ],
  "nihInstitutes": [
    "NCI"
  ],
  "onlyActiveProjects": true,
  "includeNihPublications": false,
  "enrichOrganizationContacts": false,
  "maxResults": 100,
  "monitorMode": false,
  "monitorKey": "default",
  "maxConcurrency": 6,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "source": {
    "label": "Source",
    "format": "text"
  },
  "title": {
    "label": "Project",
    "format": "text"
  },
  "organizationName": {
    "label": "Organization",
    "format": "text"
  },
  "orgState": {
    "label": "State",
    "format": "text"
  },
  "piName": {
    "label": "PI",
    "format": "text"
  },
  "contactEmail": {
    "label": "Contact email",
    "format": "text"
  },
  "awardAmount": {
    "label": "Award $",
    "format": "number"
  },
  "agency": {
    "label": "Agency",
    "format": "text"
  },
  "score": {
    "label": "Lead score",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [US Federal Grants & Funding Scraper - Grants.gov, NIH & NSF](https://apify.com/scrapesage/us-federal-grants-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/us-federal-grants-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/scrapesage/us-federal-grants-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
