# USAspending Research Sub-Grant Scraper

**Use case:** 

Scrape federal research sub-grants from USAspending. Get sub-recipients, amounts, prime awards and dates for grant flow analysis.

## Input

```json
{
  "maxItems": 25,
  "withDetails": true,
  "keyword": "research",
  "awardTypes": [
    "grants"
  ],
  "sort": "Sub-Award Amount",
  "order": "desc"
}
```

## Output

```json
{
  "subAwardId": {
    "label": "Sub-Award ID",
    "format": "text"
  },
  "subRecipientName": {
    "label": "Sub-Recipient",
    "format": "text"
  },
  "subRecipientUei": {
    "label": "Sub-Recipient UEI",
    "format": "text"
  },
  "subAwardAmount": {
    "label": "Amount",
    "format": "number"
  },
  "subAwardDate": {
    "label": "Date",
    "format": "date"
  },
  "primeAwardId": {
    "label": "Prime Award ID",
    "format": "text"
  },
  "primeRecipientName": {
    "label": "Prime Recipient",
    "format": "text"
  },
  "awardingAgency": {
    "label": "Agency",
    "format": "text"
  },
  "primeAwardUrl": {
    "label": "Prime URL",
    "format": "link"
  },
  "observedAt": {
    "label": "Scraped",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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