# Garda — 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 and access detailed information about Irish Garda stations, including their locations, phone numbers, and operating hours. Search by name or browse through divisions to quickly locate the station nearest to you.

**Category:** Government & Public Data | **Website:** [www.garda.ie/en/contact-us/station-directory/](https://www.garda.ie/en/contact-us/station-directory/) | **Docs:** [parse.bot/marketplace/35907153-4e76-4bdf-8415-0157bff68b75/garda-ie-api](https://parse.bot/marketplace/35907153-4e76-4bdf-8415-0157bff68b75/garda-ie-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-garda-ie-api-35907153/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_station

Get detailed information about a specific Garda station by its numeric ID. Returns station name, address, county, phone number, GPS coordinates, opening hours, and division.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `station_id` | string | Yes | Numeric station ID (e.g. 4201). Obtain from search_stations results. |

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

### list_divisions

List all Garda divisions with their IDs and names. Division IDs can be used to filter station searches.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-garda-ie-api-35907153/list_divisions \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_stations

Search Garda stations by name, location, or division. The query matches against station names as well as address and county text. Both query and division_id filters can be combined. Results are returned in a single page containing all matches.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `division_id` | string | No | Filter by Garda division ID. Use list_divisions to get valid IDs. |
| `query` | string | No | Free-text search term matched against station name, address, and county (case-insensitive). Omitting returns all stations (or all within the specified division). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-garda-ie-api-35907153/search_stations \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"division_id":"<string>","query":"<string>"}'
```
