# RentCast Property Lookup by ID

> RentCast Property Lookup by ID is a paid API for AI agents from rentcast.x402.paywithlocus.com, paid per call via x402, $0.033/call, status unknown (last checked 2026-09-13).

Retrieves full property details for a specific US real estate property using its RentCast property ID

## Facts

- Endpoint: POST https://rentcast.x402.paywithlocus.com/rentcast/property-by-id
- Price: $0.033/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/rentcast-property-lookup-by-id-1667fbda
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rssrIzRe7vb0wyChOgG4a

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability rentcast-property-lookup-by-id-1667fbda -d '<json body>'
```

Example prompt: Pull the full property record for 5500 Grand Lake Dr, San Antonio, TX 78244 from RentCast — I want the AVM valuation, estimated rent, and any ownership details you can find.

## When to prefer this

Use this endpoint when you already have a RentCast property ID (formatted as a slugified address string like '5500-Grand-Lake-Dr,-San-Antonio,-TX-78244') and need full property intelligence in a single call. Prefer this over address-search endpoints when you have a deterministic ID to avoid ambiguous address matching. Ideal for workflows where a prior search step has already resolved the property ID and you now need the full record.

## Known failure modes

- Invalid or malformed RentCast property ID returns an error or empty data object
- Property not found in RentCast database returns empty or null data
- Payment failure (insufficient USDC balance) prevents the request from completing
- Network timeout or service unavailability from underlying RentCast API
- Non-US properties are not supported and will return no results

## How this service works

US real estate intelligence — property records, AVM valuations, rent estimates, sale/rental listings, and market statistics.

## Output

Returns a JSON object with full property intelligence for the requested property ID, including property records (ownership, lot details, structure), automated market valuation (AVM), estimated rental value, and any associated sale or rental listing data. The response also includes payment metadata (settled USDC amount) and a request tracking ID.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "id": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {},
  "payment": {
   "scheme": "exact",
   "settledUsdc": "0.001000",
   "authorizedMaxUsdc": "0.001000"
  },
  "request": {
   "id": "00000000-0000-4000-8000-000000000000",
   "statusUrl": "/requests/00000000-0000-4000-8000-000000000000"
  },
  "success": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/rentcast-property-lookup-by-id-1667fbda/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from rentcast.x402.paywithlocus.com](https://www.zero.xyz/host/rentcast.x402.paywithlocus.com/llms.txt)
