# Senioradvisor — 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 and compare senior care facilities across the US by location, ZIP code, or state. Access detailed information including pricing by room type, ratings, user reviews, available services, and care types such as assisted living, memory care, nursing homes, and more.

**Category:** Healthcare | **Website:** [senioradvisor.com/](https://senioradvisor.com/) | **Docs:** [parse.bot/marketplace/bd8e1598-4566-4559-91ec-2116b636b14f/senioradvisor-com-api](https://parse.bot/marketplace/bd8e1598-4566-4559-91ec-2116b636b14f/senioradvisor-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-senioradvisor-com-api-bd8e1598/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_facility_detail

Retrieve full details for a specific facility by its URL slug. Returns comprehensive information including address, phone, rating, description, pricing by room type, services/amenities, photos, and nearby facilities. The slug is obtained from search_facilities results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Facility URL slug (e.g. 'atria-west-86-new-york-ny'). Obtain from search_facilities results[*].slug. |

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

### list_care_types

List all supported senior care categories and their URL slugs. These slugs can be used as the care_type parameter in search_facilities. Returns a static list of care type options.

**Estimated cost:** Metered

_No parameters required._

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

### search_by_state

List US states and Canadian provinces with their assisted-living browsing URLs. Useful for hierarchical facility discovery — browse by state, then drill into cities within each state.

**Estimated cost:** Metered

_No parameters required._

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

### search_facilities

Search for senior care facilities by location and care type. Returns a paginated list of facility summaries including name, slug, address, rating, and review count. Location can be a city-state slug (from search_location's to_url) or a ZIP code. Paginates via integer page number.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `care_type` | string | No | Care type slug. |
| `location_slug` | string | Yes | Location slug (e.g. 'new-york-ny') or ZIP code (e.g. '10001'). Obtain slugs from search_location endpoint's to_url field. |
| `page` | integer | No | Page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-senioradvisor-com-api-bd8e1598/search_facilities \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"care_type":"<string>","location_slug":"<string>","page":"<integer>"}'
```

### search_location

Autocomplete search for locations by city name or ZIP code. Returns suggested locations with slugs usable as location_slug in search_facilities. Each result includes a to_url field that serves as the location_slug parameter for facility searches.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `term` | string | Yes | Search term — a city name (e.g. 'New York') or ZIP code (e.g. '10001'). |

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