LogoLogo
  • Welcome
  • Getting Started
    • Quickstart
    • Coverage
  • API
    • Pre-Trained Agents
      • Valuation Agent
      • Condition Agent
      • Compliance Agent
      • Attribute Search Agent
      • Monitoring Agent
    • Spatial AI (base model)
    • PDF Reporting
    • SDK (coming soon)
    • Fine-Tuning (Coming Soon)
Powered by GitBook
On this page

Was this helpful?

  1. API
  2. Pre-Trained Agents

Monitoring Agent

PreviousAttribute Search AgentNextSpatial AI (base model)

Last updated 2 months ago

Was this helpful?

Subscribe to a property or region and receive push notifications (via webhook) or poll for changes if valuations, conditions, or compliance statuses shift significantly.

Sample Request

POST /v1/agent/monitoring
{
  "subscribe": true,

  "address": "415 Mission Street, San Francisco, CA, US",
  "callback_url": "https://example.com/webhook",
  "notification_options": {
    "threshold": {
      "valuation_percent_change": 5,
      "condition_score_change": 1.5,
      "compliance_status_change": true
    },
    "frequency": "immediate"
  }
}

Sample Webhook Notification

{
  "subscription_id": "mon_8437f92ac1e54b9d",
  "event_type": "property_change_detected",
  "timestamp": "2025-03-02T14:22:10Z",
  "property": {
    "propertyId": "67a771e11bcf52fcce866d6a",
    "address": "415 Mission Street, San Francisco, CA, US"
  },
  "changes": [
    {
      "type": "valuation",
      "previous_value": 4250000,
      "current_value": 4520000,
      "percent_change": 6.35,
      "detected_date": "2025-03-01T22:15:43Z"
    },
    {
      "type": "condition",
      "category": "roof",
      "previous_score": 8.2,
      "current_score": 6.5,
      "detected_date": "2025-03-02T10:45:12Z",
      "notes": "Recent satellite imagery shows potential damage from storm event"
    }
  ],
  "next_assessment_date": "2025-03-09T00:00:00Z"
}

(If you specify a region or an uploaded file, you’ll get updates whenever relevant changes are detected for any property in that set.)