# Scrape open NIH grant opportunities from Grants.gov

**Use case:** 

Scrape grant opportunities posted by NIH (agency code HHS-NIH11) on Grants.gov, with close date, award ceiling, total funding and the agency contact email.

## Input

```json
{
  "searchType": "grantOpportunities",
  "searchQueries": [
    "artificial intelligence"
  ],
  "oppStatuses": "posted",
  "grantsAgencies": [
    "HHS-NIH11"
  ],
  "includeOpportunityDetails": true,
  "onlyActiveProjects": false,
  "includeNihPublications": false,
  "enrichOrganizationContacts": false,
  "maxResults": 100,
  "monitorMode": false,
  "monitorKey": "default",
  "maxConcurrency": 6,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "title": {
    "label": "Opportunity",
    "format": "text"
  },
  "agency": {
    "label": "Agency",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "openDate": {
    "label": "Opens",
    "format": "text"
  },
  "closeDate": {
    "label": "Closes",
    "format": "text"
  },
  "awardCeiling": {
    "label": "Award ceiling $",
    "format": "number"
  },
  "estimatedTotalFunding": {
    "label": "Total funding $",
    "format": "number"
  },
  "expectedNumberOfAwards": {
    "label": "# awards",
    "format": "number"
  },
  "contactEmail": {
    "label": "Contact email",
    "format": "text"
  },
  "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`).
