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

> Browse Trumark Homes communities across California and Colorado to view floor plans, pricing, specifications, and real-time available inventory. Find the perfect home by accessing detailed community listings and comparing options that match your needs.

**Category:** Real Estate | **Website:** [trumarkhomes.com/new-homes/ca/rancho-mission-viejo/lotus-at-rienda/](https://trumarkhomes.com/new-homes/ca/rancho-mission-viejo/lotus-at-rienda/) | **Docs:** [parse.bot/marketplace/5bc6f92e-f89c-45ee-a145-903503564de4/trumarkhomes-com-api](https://parse.bot/marketplace/5bc6f92e-f89c-45ee-a145-903503564de4/trumarkhomes-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-trumarkhomes-com-api-5bc6f92e/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_community_listings

Retrieve all floor plans and available homes (quick move-in / QMI) for a specific Trumark Homes community. Returns builder name, community name, and two arrays: floor_plans (with plan name, square footage, bedrooms, bathrooms, from price, and listing URL) and available_homes (with address, lot number, QMI price, availability date, and listing URL). Communities without available homes return an empty available_homes array.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `community_slug` | string | Yes | URL path slug identifying the community, in the format '<state>/<city>/<community-name>' (e.g. 'ca/rancho-mission-viejo/lotus-at-rienda'). Also accepts the full path with '/new-homes/' prefix. Obtain valid slugs from the list_communities endpoint's href field. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-trumarkhomes-com-api-5bc6f92e/get_community_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"community_slug":"<string>"}'
```

### list_communities

List all Trumark Homes communities, optionally filtered by state. Returns community names and URL slugs that can be passed to get_community_listings. The href field contains the path slug usable as get_community_listings' community_slug parameter.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `state` | string | No | Two-letter state abbreviation to filter communities. Accepted values: 'ca' (California), 'co' (Colorado). Omitting returns all communities across both states. |

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