EV Charging Station Finder avatar

EV Charging Station Finder

Pricing

from $3.50 / 1,000 results

Go to Apify Store
EV Charging Station Finder

EV Charging Station Finder

Find electric vehicle charging stations. Get locations, charger types, networks, pricing, and availability. Essential for EV apps and trip planning.

Pricing

from $3.50 / 1,000 results

Rating

0.0

(0)

Developer

Fortuitous Pirate

Fortuitous Pirate

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

16 days ago

Last modified

Categories

Share

EV Charging Station Scraper

Overview

Find EV charging stations from Tesla Supercharger, EVgo, Electrify America, and ChargePoint networks. Search by location to get station addresses, charger types, port counts, pricing, and real-time availability. Perfect for EV trip planning apps, fleet management, and charging infrastructure analysis.

Features

  • Search by keywords to find specific results
  • Captures pricing information
  • Includes location and address data
  • Control output volume with configurable result limits

Use Cases

  • Monitor - Monitor vehicle listings and pricing trends
  • Build - Build automotive market intelligence databases
  • Track - Track dealer inventory and pricing strategies
  • Aggregate - Aggregate vehicle data for comparison platforms

Input Parameters

ParameterTypeDescriptionDefault
networksarray (required)Which charging networks to scrape. Select specific networks or 'all' for all ...["all"]
maxItemsintegerMaximum number of charging stations to return per network. Set to 0 for unlim...100
statestringFilter results by US state code (e.g., 'CA', 'TX', 'NY'). Leave empty for all...``
citystringFilter results by city name. Leave empty for all cities.``
statusstringFilter by station statusE

Output Example

Each result contains structured data like this:

{
"id": "ABC-12345",
"name": "EV Charging Station Sample Item",
"network": "Sample network",
"address": "123 Main St",
"coordinates": "Sample coordinates",
"status": "Active",
"chargerTypes": "Sample chargerTypes",
"ports": "Sample ports",
"pricing": "Sample pricing",
"lastUpdated": "2025-01-15"
}

Pricing

This actor uses pay-per-result pricing:

  • $0.002 per result
  • $2.00 per 1,000 results

No monthly fees. You only pay for what you scrape. Apify Free plan includes $5/month in platform credits.

How to Run

Apify Console

  1. Go to the EV Charging Station Scraper actor page
  2. Configure your input parameters
  3. Click Start and wait for the results
  4. Download data in JSON, CSV, or Excel format

API

curl -X POST "https://api.apify.com/v2/acts/fortuitous_pirate~ev-charging-scraper/runs?token=YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"maxItems": 10}'

Python SDK

from apify_client import ApifyClient
client = ApifyClient("YOUR_API_TOKEN")
run = client.actor("fortuitous_pirate/ev-charging-scraper").call(
run_input={"maxItems": 10}
)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item)

Integration

Connect EV Charging Station Scraper with your existing tools and workflows:

  • API access - Programmatic access via Apify API
  • Webhooks - Get notified when scraping completes
  • Scheduling - Set up recurring runs on any schedule
  • Zapier / Make - Connect with 5,000+ apps via Apify integrations
  • Python / Node.js SDKs - Native client libraries for easy integration