# AFDC Texas EV Charging Stations Scraper

**Use case:** 

Scrape Texas EV charging stations from the AFDC with station name, street address, city, state, and ZIP. Export structured station data to JSON or CSV.

## Input

```json
{
  "state": "TX",
  "maxItems": 50
}
```

## Output

```json
{
  "id": {
    "label": "Id",
    "format": "text"
  },
  "stationName": {
    "label": "Station Name",
    "format": "text"
  },
  "streetAddress": {
    "label": "Street Address",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "zip": {
    "label": "Zip",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "latitude": {
    "label": "Latitude",
    "format": "text"
  },
  "longitude": {
    "label": "Longitude",
    "format": "text"
  },
  "accessCode": {
    "label": "Access Code",
    "format": "text"
  },
  "accessDaysTime": {
    "label": "Access Days Time",
    "format": "text"
  },
  "groupsWithAccessCode": {
    "label": "Groups With Access Code",
    "format": "text"
  },
  "stationPhone": {
    "label": "Station Phone",
    "format": "text"
  },
  "intersectionDirections": {
    "label": "Intersection Directions",
    "format": "text"
  },
  "fuelTypeCode": {
    "label": "Fuel Type Code",
    "format": "text"
  },
  "maximumVehicleClass": {
    "label": "Maximum Vehicle Class",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [AFDC EV Stations Scraper](https://apify.com/parseforge/afdc-ev-stations-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/afdc-ev-stations-scraper) to learn more, explore other use cases, and run it yourself.