# Texas FRA Railroad Accidents Scraper

**Use case:** 

Scrape Texas FRA railroad accident records with dates, railroads, locations, causes, casualties, damage costs, and report links.

## Input

```json
{
  "startDate": "2024-01-01",
  "endDate": "2024-12-31",
  "state": "TX",
  "includeNarrative": true,
  "maxItems": 100
}
```

## Output

```json
{
  "reportNumber": {
    "label": "Report number"
  },
  "railroad": {
    "label": "Railroad"
  },
  "date": {
    "label": "Date"
  },
  "stateAbbr": {
    "label": "State"
  },
  "county": {
    "label": "County"
  },
  "cityOrLocation": {
    "label": "Location"
  },
  "accidentType": {
    "label": "Accident type"
  },
  "causeCode": {
    "label": "Cause"
  },
  "fatalities": {
    "label": "Fatalities"
  },
  "injuries": {
    "label": "Injuries"
  },
  "damageCost": {
    "label": "Damage cost"
  },
  "hazmatReleased": {
    "label": "Hazmat"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

This example demonstrates how to use [FRA Railroad Accidents Scraper](https://apify.com/automation-lab/fra-railroad-accidents-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/fra-railroad-accidents-scraper) to learn more, explore other use cases, and run it yourself.