# Lennar Marketplace Locatealpha — 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.

> Access Lennar Investor Marketplace property listings along with detailed financials, demographics, rental comparables, and property management resources. Search and filter properties by market, retrieve per-property underwriting data, and explore area insights including schools, crime, income, and population trends.

**Category:** Real Estate | **Website:** [lennar-marketplace.locatealpha.com/](https://lennar-marketplace.locatealpha.com/) | **Docs:** [parse.bot/marketplace/4a20cd71-e4ca-4d93-92f6-87a9173670cf/lennar-marketplace-locatealpha-com-api](https://parse.bot/marketplace/4a20cd71-e4ca-4d93-92f6-87a9173670cf/lennar-marketplace-locatealpha-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-lennar-marketplace-locatealpha-com-api-4a20cd71/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_listings

Fetch property listings from the Lennar Investor Marketplace. Returns an array of property objects, each containing property details, financials (proforma), metadata, and coordinates. Supports pagination via limit and offset. The full inventory is typically a few hundred properties.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of listings to return per request. Capped at 400. |
| `offset` | integer | No | Number of listings to skip for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lennar-marketplace-locatealpha-com-api-4a20cd71/get_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","offset":"<integer>"}'
```

### get_markets

Returns lists of all available states (2-letter codes) and cities from current listings inventory. Useful for discovering valid search terms for search_listings.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lennar-marketplace-locatealpha-com-api-4a20cd71/get_markets \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_property_comps

Fetch rental comparable summary (ownership mix, institutional activity) within 5 miles of a listing. Returns total parcels count, owner-occupied breakdown, and institutional investor counts.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `property_id` | string | Yes | Numeric property ID from a current listing. Obtain from get_listings or search_listings results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lennar-marketplace-locatealpha-com-api-4a20cd71/get_property_comps \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"property_id":"<string>"}'
```

### get_property_demographics

Fetch demographic data and area insights for a property's location. Includes crime score, median household income, population growth, school ratings, flood zone, and racial composition breakdown.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `property_id` | string | Yes | Numeric property ID from a current listing. Obtain from get_listings or search_listings results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lennar-marketplace-locatealpha-com-api-4a20cd71/get_property_demographics \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"property_id":"<string>"}'
```

### get_property_details

Fetch detailed information for a single property by its ID. Returns the full property object including financials, photos, descriptions, underwriting data, and coordinates. The property must be from a currently active listing.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `property_id` | string | Yes | Numeric property ID from a current listing. Obtain from get_listings or search_listings results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lennar-marketplace-locatealpha-com-api-4a20cd71/get_property_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"property_id":"<string>"}'
```

### get_property_resources

Fetch property management fee resources for a property's market. Returns fees from multiple PM providers including HomeRiver, MyPlaceHomes, and Evernest, plus leasing and renewal fees.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `property_id` | string | Yes | Numeric property ID from a current listing. Obtain from get_listings or search_listings results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lennar-marketplace-locatealpha-com-api-4a20cd71/get_property_resources \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"property_id":"<string>"}'
```

### search_listings

Search for property listings by keyword matching against city name, state abbreviation, or full address. Returns all matching listings from the current inventory. Matches are case-insensitive substring matches.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search keyword to match against city name, state abbreviation, or full address (e.g. 'Florida', 'Bradenton', 'FL'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lennar-marketplace-locatealpha-com-api-4a20cd71/search_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
