> For the complete documentation index, see [llms.txt](https://docs.geolava.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.geolava.com/api/editor/valuation-agent.md).

# Valuation Agent

<figure><img src="/files/r2KKftdh3uCQwLl6HvO7" alt=""><figcaption></figcaption></figure>

**Purpose & Use Cases**\
Provides near-real-time estimates of a property’s fair market value. Works with single properties or larger sets (cities, user portfolios, etc.).

**Sample Request**

```bash
POST /v1/agent/valuation
{
  "address": "415 Mission Street, San Franscisco, CA, US"
}
```

Or to query a region:

```bash
POST /v1/agent/valuation
{
  "region": {
    "city": "Seattle",
    "state": "WA"
  }
}
```

**Sample Response**

```json
{
  "property": {
    "address": "415 Mission Street, San Francisco, CA, US",
    "propertyType": "residential",
    "squareFeet": 1850,
    "yearBuilt": 1995
  },
  "valuation": {
    "timestamp": "2025-02-25T16:30:22Z",
    "homeValue": 1835000,
    "rentalValue": 6500,
    "confidenceScore": 87
  },
  "investment": {
    "maintenanceCost": "Medium",
    "investmentRating": "B",
    "capRate": 3.5,
    "pricePerSqFt": 973
  },
  "range": {
    "minHomeValue": 1599000,
    "maxHomeValue": 1999000,
    "minRentalValue": 5500,
    "maxRentalValue": 7500
  },
  "marketTrends": {
    "yearOverYearChange": 3.5,
    "forecastedAnnualGrowth": 2.9,
  }
}

```

(For regional queries or file uploads, you’d receive a set of results or a job ID to retrieve them asynchronously.)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.geolava.com/api/editor/valuation-agent.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
