# Plugshare — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search for EV charging stations worldwide by location and radius. Retrieve real-time availability, connector types, user reviews, and amenity details for any station. Filter by residential or commercial property type to find chargers at apartment complexes, parking facilities, and more.

**Category:** Maps & Geospatial | **Website:** [plugshare.com/](https://plugshare.com/) | **Docs:** [parse.bot/marketplace/e0c1da9d-1faf-4bcc-a6a9-84913906ed02/plugshare-com-api](https://parse.bot/marketplace/e0c1da9d-1faf-4bcc-a6a9-84913906ed02/plugshare-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-plugshare-com-api-e0c1da9d/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_station_details

Get full detailed information for a specific EV charging station by its ID. Returns reviews, outlet availability status, amenities, photos, network information, connector types, opening hours, and parking attributes. The station_id is available from search_stations or search_apartments results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `station_id` | string | Yes | The unique numeric ID of the charging station (from search_stations or search_apartments results). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-plugshare-com-api-e0c1da9d/get_station_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"station_id":"<string>"}'
```

### search_apartments

Find EV charging stations located in apartment complexes, residential societies, and housing developments within a specified radius. Filters results by keywords (apartment, residential, condo, complex, society, building, housing, villas) matched against station name, address, POI name, and description. Always returns full details including reviews and outlet status.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `latitude` | number | No | Latitude of the search center. |
| `limit` | integer | No | Maximum number of stations to return. |
| `longitude` | number | No | Longitude of the search center. |
| `radius` | number | No | Search radius in kilometers. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-plugshare-com-api-e0c1da9d/search_apartments \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"latitude":"<number>","limit":"<integer>","longitude":"<number>","radius":"<number>"}'
```

### search_stations

Search for EV charging stations within a specified radius (in km) of a central coordinate. Returns a list of stations with summary or detailed information depending on include_details. Grid-based internal tiling covers large radii; each station includes connector types and availability. Paginates as a single page bounded by limit.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `include_details` | boolean | No | Whether to fetch full details (reviews, outlet status) for each station found. When false, returns lightweight summaries. |
| `latitude` | number | No | Latitude of the search center. |
| `limit` | integer | No | Maximum number of stations to return. |
| `longitude` | number | No | Longitude of the search center. |
| `radius` | number | No | Search radius in kilometers. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-plugshare-com-api-e0c1da9d/search_stations \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"include_details":"<boolean>","latitude":"<number>","limit":"<integer>","longitude":"<number>","radius":"<number>"}'
```
