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

# Property Autofill

> Auto-populate listing details from an address or MLS number.

Automatically fill in property details from an address or MLS number.

## Endpoint

```
POST /functions/v1/property-autofill
```

## Authentication

Requires valid JWT.

## Request Body

```json theme={null}
{
  "address": "123 Main St, Beverly Hills, CA 90210"
}
```

## Response

```json theme={null}
{
  "address": "123 Main St",
  "city": "Beverly Hills",
  "state": "CA",
  "zip_code": "90210",
  "bedrooms": 4,
  "bathrooms": 3,
  "square_feet": 3200,
  "price": 2500000
}
```
