# HSE Ireland — 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 nearby pharmacies in Ireland that offer flu and COVID-19 vaccines through the HSE's official database. Search vaccine locations by your area to quickly locate available vaccination services.

**Category:** Healthcare | **Website:** [www2.hse.ie/services/find-a-vaccine/](https://www2.hse.ie/services/find-a-vaccine/) | **Docs:** [parse.bot/marketplace/acf4dd0a-09cf-408e-804d-eff463da8340/www2-hse-ie-api](https://parse.bot/marketplace/acf4dd0a-09cf-408e-804d-eff463da8340/www2-hse-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-www2-hse-ie-api-acf4dd0a/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_vaccine_locations

Search for pharmacies and locations offering vaccines in Ireland. Returns paginated results sorted alphabetically by default, or by distance when coordinates are provided. Supports filtering by vaccine service type. Each result includes pharmacy details, address, contact information, services offered, and optional booking links.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `latitude` | string | No | Latitude coordinate for location-based search (decimal degrees, e.g. 53.3498). When provided with longitude, results are sorted by distance from this point. |
| `location_name` | string | No | Human-readable name for the search location (e.g. 'Dublin, Ireland'). Used for display purposes in distance-sorted results. Defaults to the coordinate values if omitted. |
| `longitude` | string | No | Longitude coordinate for location-based search (decimal degrees, e.g. -6.2603). Must be provided together with latitude. |
| `page` | integer | No | Page number for pagination. 10 results per page. |
| `service` | string | No | Filter by vaccine service type. Omitted returns all locations regardless of service. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-www2-hse-ie-api-acf4dd0a/search_vaccine_locations \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"latitude":"<string>","location_name":"<string>","longitude":"<string>","page":"<integer>","service":"<string>"}'
```
