# Real Estate Sales Leasing and Valuations

## Links

- Product page URL: https://www.agentpmt.com/marketplace/real-estate-sales-leasing-and-valuations
- Product markdown URL: https://www.agentpmt.com/marketplace/real-estate-sales-leasing-and-valuations?format=agent-md
- Product JSON URL: https://www.agentpmt.com/marketplace/real-estate-sales-leasing-and-valuations?format=agent-json

## Overview

- Product ID: 69c5432ad42dc2c8249b8a47
- Vendor: Apoth3osis
- Type: data
- Unit type: request
- Price: 2500 credits
- Categories: Financial Data, Geocoding & Location Services, Public Records & Government Data, Property Listings & Search, Property Valuation & Analytics, Property Management, Civic Data & Demographics
- Generated at: 2026-05-14T01:09:14.251Z

### Page Description

Get instant residential property valuations, rent estimates, and market insights for any US address. Search active sale and rental listings, pull detailed property records with tax history and owner information, and analyze market trends by zip code — all in one place. Whether you're evaluating an investment, pricing a rental, or researching a neighborhood, get the real estate data you need without bouncing between multiple sources.

### Agent Description

Look up US property records, get value and rent estimates with comparable properties, search sale and rental listings with agent info, and retrieve aggregated market statistics by zip code. Covers property details (tax assessments, features, owner info, sale history), AVM valuations, MLS listing data, and market trend analytics.

## Details

### Details

Get instant residential property valuations, rent estimates, and market insights for any US address. Search active sale and rental listings, pull detailed property records with tax history and owner information, and analyze market trends by zip code — all in one place. Whether you're evaluating an investment, pricing a rental, or researching a neighborhood, get the real estate data you need without bouncing between multiple sources.

### Actions

- `value_estimate` (25 credits): Get a property value estimate with comparable sales
- `rent_estimate` (25 credits): Get a rent estimate with comparable rentals
- `property_search` (25 credits): Search property records by location and criteria
- `property_details` (25 credits): Get a single property record by ID
- `sale_listings` (25 credits): Search sale listings in an area
- `sale_listing_details` (25 credits): Get a single sale listing by ID
- `rental_listings` (25 credits): Search rental listings in an area
- `rental_listing_details` (25 credits): Get a single rental listing by ID
- `market_statistics` (25 credits): Get aggregated market data for a zip code

### Use Cases

Property value estimates, Rent estimates with comparables, Property record lookups, Sale listing search, Rental listing search, Market statistics by zip code, Investment property analysis, Neighborhood comparison, Property tax history lookup, Comparable property analysis

### Workflows Using This Tool

No public workflows currently reference this product.

### Related Content

#### Real Estate AI Tool Unlocks U.S. Property Data

- Type: article
- Page URL: https://www.agentpmt.com/articles/real-estate-ai-tool-unlocks-u-s-property-data
- Markdown URL: https://www.agentpmt.com/articles/real-estate-ai-tool-unlocks-u-s-property-data?format=agent-md
AgentPMT now offers Real Estate Sales Leasing and Valuations, a nine-action real estate AI tool by Apoth3osis that gives AI agents programmatic access to U.S. property records, sale and rental listings, valuations, rent estimates, and market statistics at 25 credits per action.

## Integration Details

### DynamicMCP

- Setup page URL: https://www.agentpmt.com/dynamic-mcp
- Claude setup guide: https://www.agentpmt.com/dynamic-mcp?platform=claude#videos
- ChatGPT setup guide: https://www.agentpmt.com/dynamic-mcp?platform=chatgpt#videos
- Cursor setup guide: https://www.agentpmt.com/dynamic-mcp?platform=cursor#videos
- Windsurf setup guide: https://www.agentpmt.com/dynamic-mcp?platform=windsurf#videos

STDIO connector for Claude Code, Codex, Cursor, Zed, and other LLMs that require STDIO or custom connections. This lightweight connector routes requests to `https://api.agentpmt.com/mcp`. All tool execution happens in the cloud and the server cannot edit any files on your computer.

```bash
npm install -g @agentpmt/mcp-router
agentpmt-setup
```

### REST API

The live page renders cURL, Python, JavaScript, and Node.js examples. Logged-in users see those examples prefilled with their own API and budget credentials.

- Purchase endpoint: https://api.agentpmt.com/products/purchase
- Authorization format: `Bearer <base64(apiKey:budgetKey)>`

```bash
curl -X POST "https://api.agentpmt.com/products/purchase" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer eW91ci1hcGkta2V5LWhlcmU6eW91ci1idWRnZXQta2V5LWhlcmU=" \
  -d '{
    "product_id": "69c5432ad42dc2c8249b8a47",
    "parameters": {
      "action": "value_estimate"
    }
  }'
```

### Autonomous Agents

Do not use the abbreviated instructions in this product markdown for wallet-based invocation. Retrieve the full External Agent API markdown document instead.

- External Agent API page URL: https://www.agentpmt.com/external-agent-api
- External Agent API markdown URL: https://www.agentpmt.com/external-agent-api?format=agent-md

### Schema

#### Parameters

- Schema type: actions

```json
{
  "actions": {
    "value_estimate": {
      "description": "Get a property value estimate with comparable sales",
      "properties": {
        "address": {
          "type": "string",
          "description": "Full address: Street, City, State, Zip",
          "required": false
        },
        "latitude": {
          "type": "number",
          "description": "Latitude (alternative to address)",
          "required": false
        },
        "longitude": {
          "type": "number",
          "description": "Longitude (alternative to address)",
          "required": false
        },
        "property_type": {
          "type": "string",
          "description": "Property type",
          "required": false,
          "enum": [
            "Single Family",
            "Condo",
            "Townhouse",
            "Manufactured",
            "Multi-Family",
            "Apartment",
            "Land"
          ]
        },
        "bedrooms": {
          "type": "string",
          "description": "Number of bedrooms (0 for studio)",
          "required": false
        },
        "bathrooms": {
          "type": "string",
          "description": "Number of bathrooms",
          "required": false
        },
        "square_footage": {
          "type": "string",
          "description": "Living area in sqft",
          "required": false
        },
        "max_radius": {
          "type": "number",
          "description": "Max distance for comps in miles",
          "required": false
        },
        "days_old": {
          "type": "string",
          "description": "Max days since comps were on market",
          "required": false
        },
        "comp_count": {
          "type": "integer",
          "description": "Number of comps (5-25, default 15)",
          "required": false
        }
      }
    },
    "rent_estimate": {
      "description": "Get a rent estimate with comparable rentals",
      "properties": {
        "address": {
          "type": "string",
          "description": "Full address: Street, City, State, Zip",
          "required": false
        },
        "latitude": {
          "type": "number",
          "description": "Latitude (alternative to address)",
          "required": false
        },
        "longitude": {
          "type": "number",
          "description": "Longitude (alternative to address)",
          "required": false
        },
        "property_type": {
          "type": "string",
          "description": "Property type",
          "required": false,
          "enum": [
            "Single Family",
            "Condo",
            "Townhouse",
            "Manufactured",
            "Multi-Family",
            "Apartment"
          ]
        },
        "bedrooms": {
          "type": "string",
          "description": "Number of bedrooms (0 for studio)",
          "required": false
        },
        "bathrooms": {
          "type": "string",
          "description": "Number of bathrooms",
          "required": false
        },
        "square_footage": {
          "type": "string",
          "description": "Living area in sqft",
          "required": false
        },
        "max_radius": {
          "type": "number",
          "description": "Max distance for comps in miles",
          "required": false
        },
        "days_old": {
          "type": "string",
          "description": "Max days since comps were on market",
          "required": false
        },
        "comp_count": {
          "type": "integer",
          "description": "Number of comps (5-25, default 15)",
          "required": false
        }
      }
    },
    "property_search": {
      "description": "Search property records by location and criteria",
      "properties": {
        "address": {
          "type": "string",
          "description": "Full address or address with radius for area search",
          "required": false
        },
        "city": {
          "type": "string",
          "description": "City name (case-sensitive)",
          "required": false
        },
        "state": {
          "type": "string",
          "description": "2-char state abbreviation",
          "required": false
        },
        "zip_code": {
          "type": "string",
          "description": "5-digit zip code",
          "required": false
        },
        "latitude": {
          "type": "number",
          "description": "Latitude for area search",
          "required": false
        },
        "longitude": {
          "type": "number",
          "description": "Longitude for area search",
          "required": false
        },
        "radius": {
          "type": "number",
          "description": "Search radius in miles (max 100)",
          "required": false
        },
        "property_type": {
          "type": "string",
          "description": "Property type filter",
          "required": false,
          "enum": [
            "Single Family",
            "Condo",
            "Townhouse",
            "Manufactured",
            "Multi-Family",
            "Apartment",
            "Land"
          ]
        },
        "bedrooms": {
          "type": "string",
          "description": "Bedrooms filter (supports ranges)",
          "required": false
        },
        "bathrooms": {
          "type": "string",
          "description": "Bathrooms filter (supports ranges)",
          "required": false
        },
        "square_footage": {
          "type": "string",
          "description": "Sqft filter (supports ranges)",
          "required": false
        },
        "lot_size": {
          "type": "string",
          "description": "Lot size in sqft (supports ranges)",
          "required": false
        },
        "year_built": {
          "type": "string",
          "description": "Year built (supports ranges)",
          "required": false
        },
        "sale_date_range": {
          "type": "string",
          "description": "Days since last sold (min 1)",
          "required": false
        },
        "limit": {
          "type": "integer",
          "description": "Max results 1-500 (default 50)",
          "required": false
        },
        "offset": {
          "type": "integer",
          "description": "Pagination offset",
          "required": false
        }
      }
    },
    "property_details": {
      "description": "Get a single property record by ID",
      "properties": {
        "record_id": {
          "type": "string",
          "description": "Property ID (e.g. '5500-Grand-Lake-Dr,-San-Antonio,-TX-78244')",
          "required": true
        }
      }
    },
    "sale_listings": {
      "description": "Search sale listings in an area",
      "properties": {
        "address": {
          "type": "string",
          "description": "Full address or address with radius",
          "required": false
        },
        "city": {
          "type": "string",
          "description": "City name (case-sensitive)",
          "required": false
        },
        "state": {
          "type": "string",
          "description": "2-char state abbreviation",
          "required": false
        },
        "zip_code": {
          "type": "string",
          "description": "5-digit zip code",
          "required": false
        },
        "latitude": {
          "type": "number",
          "description": "Latitude for area search",
          "required": false
        },
        "longitude": {
          "type": "number",
          "description": "Longitude for area search",
          "required": false
        },
        "radius": {
          "type": "number",
          "description": "Search radius in miles (max 100)",
          "required": false
        },
        "property_type": {
          "type": "string",
          "description": "Property type filter",
          "required": false,
          "enum": [
            "Single Family",
            "Condo",
            "Townhouse",
            "Manufactured",
            "Multi-Family",
            "Apartment",
            "Land"
          ]
        },
        "bedrooms": {
          "type": "string",
          "description": "Bedrooms filter",
          "required": false
        },
        "bathrooms": {
          "type": "string",
          "description": "Bathrooms filter",
          "required": false
        },
        "square_footage": {
          "type": "string",
          "description": "Sqft filter",
          "required": false
        },
        "lot_size": {
          "type": "string",
          "description": "Lot size filter",
          "required": false
        },
        "year_built": {
          "type": "string",
          "description": "Year built filter",
          "required": false
        },
        "status": {
          "type": "string",
          "description": "Listing status",
          "required": false,
          "enum": [
            "Active",
            "Inactive"
          ]
        },
        "price": {
          "type": "string",
          "description": "Price filter (supports ranges)",
          "required": false
        },
        "days_old": {
          "type": "string",
          "description": "Days since listed",
          "required": false
        },
        "limit": {
          "type": "integer",
          "description": "Max results 1-500 (default 50)",
          "required": false
        },
        "offset": {
          "type": "integer",
          "description": "Pagination offset",
          "required": false
        }
      }
    },
    "sale_listing_details": {
      "description": "Get a single sale listing by ID",
      "properties": {
        "record_id": {
          "type": "string",
          "description": "Listing ID",
          "required": true
        }
      }
    },
    "rental_listings": {
      "description": "Search rental listings in an area",
      "properties": {
        "address": {
          "type": "string",
          "description": "Full address or address with radius",
          "required": false
        },
        "city": {
          "type": "string",
          "description": "City name (case-sensitive)",
          "required": false
        },
        "state": {
          "type": "string",
          "description": "2-char state abbreviation",
          "required": false
        },
        "zip_code": {
          "type": "string",
          "description": "5-digit zip code",
          "required": false
        },
        "latitude": {
          "type": "number",
          "description": "Latitude for area search",
          "required": false
        },
        "longitude": {
          "type": "number",
          "description": "Longitude for area search",
          "required": false
        },
        "radius": {
          "type": "number",
          "description": "Search radius in miles (max 100)",
          "required": false
        },
        "property_type": {
          "type": "string",
          "description": "Property type filter",
          "required": false,
          "enum": [
            "Single Family",
            "Condo",
            "Townhouse",
            "Manufactured",
            "Multi-Family",
            "Apartment"
          ]
        },
        "bedrooms": {
          "type": "string",
          "description": "Bedrooms filter",
          "required": false
        },
        "bathrooms": {
          "type": "string",
          "description": "Bathrooms filter",
          "required": false
        },
        "square_footage": {
          "type": "string",
          "description": "Sqft filter",
          "required": false
        },
        "lot_size": {
          "type": "string",
          "description": "Lot size filter",
          "required": false
        },
        "year_built": {
          "type": "string",
          "description": "Year built filter",
          "required": false
        },
        "status": {
          "type": "string",
          "description": "Listing status",
          "required": false,
          "enum": [
            "Active",
            "Inactive"
          ]
        },
        "price": {
          "type": "string",
          "description": "Price filter (supports ranges)",
          "required": false
        },
        "days_old": {
          "type": "string",
          "description": "Days since listed",
          "required": false
        },
        "limit": {
          "type": "integer",
          "description": "Max results 1-500 (default 50)",
          "required": false
        },
        "offset": {
          "type": "integer",
          "description": "Pagination offset",
          "required": false
        }
      }
    },
    "rental_listing_details": {
      "description": "Get a single rental listing by ID",
      "properties": {
        "record_id": {
          "type": "string",
          "description": "Listing ID",
          "required": true
        }
      }
    },
    "market_statistics": {
      "description": "Get aggregated market data for a zip code",
      "properties": {
        "zip_code": {
          "type": "string",
          "description": "5-digit US zip code",
          "required": true
        },
        "data_type": {
          "type": "string",
          "description": "Data type: All, Sale, or Rental",
          "required": false,
          "enum": [
            "All",
            "Sale",
            "Rental"
          ]
        },
        "history_range": {
          "type": "integer",
          "description": "Historical range in months (default 12)",
          "required": false
        }
      }
    }
  }
}
```

### Usage Instructions

# Real Estate Data

Look up property records, get value and rent estimates with comparables, search sale and rental listings, and retrieve market statistics for any US zip code.

## Actions

### `value_estimate`
Get an estimated property value with comparable sales.

Required: `address` (string, full address) OR `latitude`+`longitude`
Optional: `property_type`, `bedrooms`, `bathrooms`, `square_footage`, `max_radius`, `days_old`, `comp_count` (5-25)

Returns: price estimate, price range (low/high), subject property details, array of comparable properties with correlation scores.

Example: `{"action":"value_estimate","address":"5500 Grand Lake Dr, San Antonio, TX, 78244"}`

### `rent_estimate`
Get an estimated monthly rent with comparable rentals.

Required: `address` OR `latitude`+`longitude`
Optional: `property_type`, `bedrooms`, `bathrooms`, `square_footage`, `max_radius`, `days_old`, `comp_count` (5-25)

Returns: rent estimate, rent range (low/high), subject property details, array of comparable rentals with correlation scores.

Example: `{"action":"rent_estimate","address":"5500 Grand Lake Dr, San Antonio, TX, 78244"}`

### `property_search`
Search property records by location and criteria.

Required: at least one location param (`address`, `city`+`state`, `zip_code`, or `latitude`+`longitude`)
Optional: `radius`, `property_type`, `bedrooms`, `bathrooms`, `square_footage`, `lot_size`, `year_built`, `sale_date_range`, `limit` (1-500), `offset`

Returns: array of property records with tax assessments, features, owner info, sale history.

Example: `{"action":"property_search","zip_code":"78244","property_type":"Single Family","limit":10}`

### `property_details`
Get a single property record by ID.

Required: `record_id` (string, e.g. "5500-Grand-Lake-Dr,-San-Antonio,-TX-78244")

Example: `{"action":"property_details","record_id":"5500-Grand-Lake-Dr,-San-Antonio,-TX-78244"}`

### `sale_listings`
Search active or inactive sale listings.

Required: at least one location param
Optional: `radius`, `property_type`, `bedrooms`, `bathrooms`, `square_footage`, `lot_size`, `year_built`, `status` (Active/Inactive), `price`, `days_old`, `limit`, `offset`

Returns: array of listings with price, agent/office info, MLS data, listing history.

Example: `{"action":"sale_listings","city":"Austin","state":"TX","status":"Active","limit":10}`

### `sale_listing_details`
Get a single sale listing by ID.

Required: `record_id`

### `rental_listings`
Search active or inactive rental listings.

Required: at least one location param
Optional: same filters as sale_listings

Returns: array of rental listings with rent price, agent/office info, MLS data.

Example: `{"action":"rental_listings","zip_code":"78705","bedrooms":"2","limit":10}`

### `rental_listing_details`
Get a single rental listing by ID.

Required: `record_id`

### `market_statistics`
Get aggregated market data for a zip code.

Required: `zip_code`
Optional: `data_type` (All/Sale/Rental, default All), `history_range` (months, default 12)

Returns: sale data (avg/median/min/max price, price per sqft, listings count) and rental data (avg/median/min/max rent, rent per sqft) with historical trends.

Example: `{"action":"market_statistics","zip_code":"78244","history_range":24}`

## Notes
- `bedrooms`, `bathrooms`, `square_footage`, `lot_size`, `year_built`, `price`, `days_old` support numeric ranges ("min-max") and multiple values ("val1,val2")
- Property types: Single Family, Condo, Townhouse, Manufactured, Multi-Family, Apartment, Land
- IDs use the format "Street-Address,-City,-ST-Zip" with hyphens replacing spaces

### Frequently Asked Questions

No linked FAQs are currently available.

### Dependencies

This product has no public dependency products.