Official-record property context for agents
Official-record property context for agents. Accepts street address or ZIP; street address is best after free lane preflight. Returns a structured public-record artifact. After x402 settlement or seller-escrow, locus_parcel_financials may include the assessor owner-of-record name for the same exact parcel (cited, not a contact); canonical storage stays owner-free. Never valuation, screening, forecasts, or safe/unsafe labels. npx @velinussage/locus-agent-skill add.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://api.locus.report/api/locus-place-report
| Category | Everything else |
|---|---|
| Provider host | api.locus.report |
| Networks | eip155:1, eip155:10, eip155:130, eip155:1329, eip155:137, eip155:146, eip155:42161, eip155:43114, eip155:480, eip155:8453, eip155:999 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 4 from 3 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.05 | 1939 ms |
Example input (from the provider)
{
"body": {
"address": "1 E Edenton St, Raleigh, NC 27601"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"anyOf": [
{
"required": [
"address"
]
},
{
"required": [
"zip"
]
}
],
"properties": {
"address": {
"minLength": 1,
"type": "string"
},
"jurisdiction": {
"enum": [
"chicago",
"raleigh"
],
"type": "string"
},
"latitude": {
"maximum": 90,
"minimum": -90,
"type": "number"
},
"longitude": {
"maximum": 180,
"minimum": -180,
"type": "number"
},
"lookbackDays": {
"exclusiveMinimum": 0,
"maximum": 3650,
"type": "integer"
},
"mode": {
"enum": [
"reasoning",
"adapters-only"
],
"type": "string"
},
"radiusMeters": {
"exclusiveMinimum": 0,
"maximum": 50000,
"type": "number"
},
"records": {
"items": {
"additionalProperties": false,
"required": [
"id",
"category",
"title",
"locationPrecision",
"tags",
"source"
],
"type": "object"
},
"maxItems": 200,
"type": "array"
},
"reportPrefs": {
"additionalProperties": false,
"properties": {
"decisionStage": {
"maxLength": 120,
"minLength": 1,
"type": "string"
},
"focusAreas": {
"items": {
"maxLength": 120,
"minLength": 1,
"type": "string"
},
"maxItems": 8,
"type": "array"
},
"goal": {
"maxLength": 160,
"minLength": 1,
"type": "string"
},
"projectType": {
"maxLength": 160,
"minLength": 1,
"type": "string"
},
"questions": {
"items": {
"maxLength": 200,
"minLength": 1,
"type": "string"
},
"maxItems": 3,
"type": "array"
}
},
"type": "object"
},
"reportType": {
"enum": [
"site_feasibility",
"property_due_diligence",
"pre_development_analysis"
],
"type": "string"
},
"sourceAdapters": {
"items": {
"enum": [
"chicago-crimes",
"raleigh-permits",
"raleigh-ask",
"raleigh-nibrs"
],
"type": "string"
},
"type": "array"
},
"zip": {
"minLength": 1,
"type": "string"
}
},
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}