# Gasbuddy — 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.

> Find the cheapest gas prices in your area by fuel type, then view detailed station information including amenities and customer reviews. Compare prices across multiple stations to save money on your next fill-up.

**Category:** Maps & Geospatial | **Website:** [www.gasbuddy.com/home](https://www.gasbuddy.com/home) | **Docs:** [parse.bot/marketplace/f77fe4f7-df91-420a-a2fc-5f329def23f2/gasbuddy-com-api](https://parse.bot/marketplace/f77fe4f7-df91-420a-a2fc-5f329def23f2/gasbuddy-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-gasbuddy-com-api-f77fe4f7/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_station

Get detailed information about a specific gas station by its GasBuddy station ID. Returns address, coordinates, amenities, brand, fuel types, current prices for all fuel grades, ratings, and reviews.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `station_id` | string | Yes | GasBuddy station ID (numeric string, e.g. '215189'). Obtained from search_gas_prices results. |

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

### search_gas_prices

Search gas stations and their prices in a given area. Returns up to 20 stations sorted by price, each with current fuel prices, address, brand, and coordinates. Results are a single page of the top stations for the area.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `area` | string | Yes | City or locality name (e.g. 'austin', 'los angeles'). Spaces are converted to hyphens internally. |
| `fuel_type` | string | No | Type of fuel to search prices for. |
| `region_code` | string | Yes | US state code, two uppercase letters (e.g. 'TX', 'CA'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-gasbuddy-com-api-f77fe4f7/search_gas_prices \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"area":"<string>","fuel_type":"<string>","region_code":"<string>"}'
```
