# Funeralocity — 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 compare funeral home prices, services, and contact information across locations nationwide to plan and budget for funeral arrangements. Search by state and city to access detailed pricing data, service fees, and facility details from funeral homes in your area.

**Category:** Healthcare | **Website:** [funeralocity.com/](https://funeralocity.com/) | **Docs:** [parse.bot/marketplace/98343962-751f-4682-a97c-e016bd6c9e4a/funeralocity-com-api](https://parse.bot/marketplace/98343962-751f-4682-a97c-e016bd6c9e4a/funeralocity-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-funeralocity-com-api-98343962/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_cities

Get a list of major cities for a given state code. Returns up to 20 cities with their names and search URL slugs. Use the city name as input for search_homes.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `state` | string | Yes | Two-letter US state code, uppercase (e.g. 'IL', 'CA', 'NY'). |

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

### get_states

List all supported US states and their two-letter codes. Returns a static list of 51 entries (50 states plus DC). No parameters required. Each entry provides a two-letter abbreviation and the full state name.

**Estimated cost:** Metered

_No parameters required._

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

### search_homes

Search for funeral homes in a specific city and state. Returns contact information, ratings, summary pricing, and detailed GPL (General Price List) pricing data for each home found within a 25-mile radius. Requires both city and state. The city value should come from get_cities results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city` | string | Yes | City name (e.g. 'Chicago', 'Aurora'). Use a value from get_cities results. |
| `limit` | integer | No | Maximum number of funeral home results to return. |
| `state` | string | Yes | Two-letter US state code, uppercase (e.g. 'IL', 'CA', 'NY'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-funeralocity-com-api-98343962/search_homes \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city":"<string>","limit":"<integer>","state":"<string>"}'
```
