Webhooks
Create a webhook subscription
Register a new webhook subscription for property events. The endpoint URL is validated on creation — it must be reachable and return a 2xx response. Currently supports deed.* events scoped to Texas counties.
post/v1/webhooks/
Request body
Example request
{
"url": "https://api.example.com/webhooks/wp-events",
"name": "Austin metro deed alerts",
"event_type": "deed.*",
"region": "state:tx"
}Response
Webhook created successfully
Example response
{
"result": {
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"url": "https://api.example.com/webhooks/wp-events",
"name": "Austin metro deed alerts",
"event_type": "deed.*",
"region": "county:tx.travis",
"status": "active",
"created_at": "2026-01-15T09:30:00Z",
"updated_at": "2026-02-20T14:45:00Z"
}
}Changes
No recorded changes to this endpoint across all 1 revision of this API.