# Meritage Homes — 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 for available homes and floor plans across Meritage Homes communities nationwide to find properties that match your needs. Browse detailed home listings and explore floor plan options directly from Meritage's inventory of communities throughout the United States.

**Category:** Real Estate | **Website:** [www.meritagehomes.com/state/ca/southern-ca/stratus](https://www.meritagehomes.com/state/ca/southern-ca/stratus) | **Docs:** [parse.bot/marketplace/723a9783-6f9d-421c-a32b-abb03ef15c8e/meritagehomes-com-api](https://parse.bot/marketplace/723a9783-6f9d-421c-a32b-abb03ef15c8e/meritagehomes-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-meritagehomes-com-api-723a9783/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_community_homes

Get all available homes and floor plans for a specific Meritage Homes community. Accepts either a community URL slug or a Salesforce community ID. Returns homes with plan details, pricing, square footage, bedrooms, bathrooms, and listing URLs. The from_price is the lowest listed price across all homes in the community.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `community_id` | string | No | Salesforce community ID (e.g. 'a070h00000xoEFzAAM'). Either community_slug or community_id is required. |
| `community_slug` | string | No | URL path slug for the community page (e.g. 'state/ca/southern-ca/stratus'). Either community_slug or community_id is required. |
| `limit` | integer | No | Maximum number of homes to return. |
| `offset` | integer | No | Number of results to skip for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-meritagehomes-com-api-723a9783/get_community_homes \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"community_id":"<string>","community_slug":"<string>","limit":"<integer>","offset":"<integer>"}'
```

### search_homes

Search all available homes across Meritage Homes communities with optional filters for state, metro area, price range, bedrooms, and square footage. Returns paginated results sorted by relevance.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of homes to return. |
| `max_price` | integer | No | Maximum home price filter. |
| `max_sqft` | integer | No | Maximum square footage filter. |
| `metro_area` | string | No | Metro area name as used by Meritage Homes (e.g. 'Southern CA', 'Phoenix', 'Houston', 'Dallas/Ft. Worth', 'Atlanta'). |
| `min_bedrooms` | integer | No | Minimum number of bedrooms filter. |
| `min_price` | integer | No | Minimum home price filter. |
| `min_sqft` | integer | No | Minimum square footage filter. |
| `offset` | integer | No | Number of results to skip for pagination. |
| `state` | string | No | Two-letter US state code (e.g. 'TX', 'CA', 'AZ', 'GA', 'FL'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-meritagehomes-com-api-723a9783/search_homes \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","max_price":"<integer>","max_sqft":"<integer>","metro_area":"<string>","min_bedrooms":"<integer>","min_price":"<integer>","min_sqft":"<integer>","offset":"<integer>","state":"<string>"}'
```
