# USAspending AI Research Grant Scraper

**Use case:** 

Scrape federal artificial intelligence research grants from USAspending. Get recipients, amounts, agencies and dates for funding research.

## Input

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

## Output

```json
{
  "awardId": {
    "label": "Award ID",
    "format": "text"
  },
  "recipientName": {
    "label": "Recipient",
    "format": "text"
  },
  "awardAmount": {
    "label": "Amount",
    "format": "number"
  },
  "awardingAgency": {
    "label": "Agency",
    "format": "text"
  },
  "awardType": {
    "label": "Type",
    "format": "text"
  },
  "startDate": {
    "label": "Start",
    "format": "date"
  },
  "endDate": {
    "label": "End",
    "format": "date"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "observedAt": {
    "label": "Scraped",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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