# USAspending FY2023 Loans Scraper

**Use case:** 

Scrape US federal loan awards for fiscal year 2023 from USAspending. Export recipients, amounts and agencies as structured data for analysis.

## Input

```json
{
  "maxItems": 10,
  "fiscalYear": 2023
}
```

## Output

```json
{
  "awardId": {
    "label": "Award Id",
    "format": "text"
  },
  "recipientName": {
    "label": "Recipient Name",
    "format": "text"
  },
  "awardingAgency": {
    "label": "Awarding Agency",
    "format": "text"
  },
  "awardingSubAgency": {
    "label": "Awarding Sub Agency",
    "format": "text"
  },
  "loanValue": {
    "label": "Loan Value",
    "format": "number"
  },
  "subsidyCost": {
    "label": "Subsidy Cost",
    "format": "number"
  },
  "cfdaNumber": {
    "label": "Cfda Number",
    "format": "number"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "issuedDate": {
    "label": "Issued Date",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

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