> ## Documentation Index
> Fetch the complete documentation index at: https://developers.investorlift.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Search nearby inventory

> Compare sale listings, asking rents, and Investorlift listings around one address.

Use the same address and radius on each route.
The API resolves the address to a parcel before it searches the surrounding area.
Replace the example address and ZIP with your subject location.

```bash theme={null}
curl -G https://api.investorlift.com/v1/listings \
  -H "Authorization: Bearer $INVESTORLIFT_API_KEY" \
  --data-urlencode 'address=100 Example St' \
  --data-urlencode 'zip=85257' \
  --data-urlencode 'radius_miles=2'
```

Change the path to `/v1/rental-listings` for observed asking rents.
Read `summary.by_segment_bedrooms` for separate house and condo groups.
Check each metric count and the source window before using its median.
The [rental method](/api-reference/endpoints/list-rental-listings#method-1) explains the sample and its limits.

Change the path to `/v1/wholesale-listings` for Investorlift listings.
Add `verification=OPEN` and `listed_after` to find recent listings without a closing deed.
This set is not a verified active inventory.
Add `sort=distance` to show the nearest listings first.
Add `on_mls=true` to require an MLS record on the market at its source date.
The two sources can describe different listing cycles.

For sale listings without a public Investorlift listing, use `/v1/listings` with `on_investorlift=false`.
The filter examines all public Investorlift listing dates, not just the MLS listing period.

REST and modern MCP charge property identities under the account period rule.
A repeated property can cost zero. The area summary has no separate charge.
Legacy MCP uses the existing static page weights.
These routes have JSON pagination and no CSV export.

## Where to go next

<CardGroup cols={2}>
  <Card title="List MLS sale listings" icon="code" href="/api-reference/endpoints/list-listings">
    Read the sale filters, summary, and source limits.
  </Card>

  <Card title="List observed asking rents" icon="code" href="/api-reference/endpoints/list-rental-listings">
    Read the rental window and statistics method.
  </Card>
</CardGroup>


## Related topics

- [List MLS sale listings](/api-reference/endpoints/list-listings.md)
- [List observed asking rents](/api-reference/endpoints/list-rental-listings.md)
- [Walkthroughs](/guides/walkthroughs.md)
- [The twenty-nine tools](/mcp/tools.md)
- [Rank nearby investors as buyers for a property](/api-reference/buyers/rank-nearby-investors-as-buyers-for-a-property.md)
