# Gogan Team — 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 homes and properties across Southwest Florida MLS listings by address through the Gogan Team real estate platform. Look up specific locations and browse available properties in the region to find your next home.

**Category:** Real Estate | **Website:** [www.goganteam.com/property-search/results](https://www.goganteam.com/property-search/results) | **Docs:** [parse.bot/marketplace/2c34c7ac-d69f-4225-bdcd-59e2759aa6d4/goganteam-com-api](https://parse.bot/marketplace/2c34c7ac-d69f-4225-bdcd-59e2759aa6d4/goganteam-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-goganteam-com-api-2c34c7ac/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### lookup_locations

Autocomplete/lookup locations by query string. Returns matching cities, areas, subdivisions, schools, ZIP codes, and addresses from the Southwest Florida MLS. Useful for discovering valid location inputs or verifying an address before calling search_properties.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search query for location lookup (e.g. 'Naples', '1008 Monterey'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-goganteam-com-api-2c34c7ac/lookup_locations \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```

### search_properties

Search for properties by address. Returns paginated property listings with details including price, beds, baths, square footage, location, and listing agent information. Paginates via page number. Each property carries an MLS ID, address fields, pricing, and agent/office attribution. An address query of a city name (e.g. 'Naples') returns all listings mentioning that term.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `address` | string | Yes | Street address or partial address to search for (e.g. '1008 Monterey Dr', 'Naples', '123 Main St'). |
| `page` | integer | No | Page number for pagination (1-based). |
| `page_size` | integer | No | Number of results per page, between 1 and 50. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-goganteam-com-api-2c34c7ac/search_properties \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"address":"<string>","page":"<integer>","page_size":"<integer>"}'
```
