Review one rental property
Review one rental property. Returns non-PII RentCast facts, a third-party rent estimate, ZIP market context, Locus/HUD checks, work items, and validated nextCalls. The exact unpaid POST reports current provider readiness before a 402; it does not reserve capacity. Price includes up to three Turnkey signatures. No screening, rent-setting, valuation, or recommendation. Private, no-store. npx @velinussage/locus-agent-skill add.
790000 (raw units)
price
7
calls / 30d
3
unique payers
2026-09-11
updated
Provider
api.locus.report · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xF121fbeceC43e1B616D47285851c20d5fC64431b",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "790000",
"maxTimeoutSeconds": 180
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"address": "1 E Edenton St, Raleigh, NC 27601"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"caveats": [
"Example artifact; not live data."
],
"generatedAt": "2026-01-01T00:00:00.000Z",
"id": "locus_example",
"records": []
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"address": {
"maxLength": 200,
"minLength": 5,
"pattern": "(?:^|[\\s,])\\d{5}(?:-\\d{4})?\\s*$",
"type": "string"
}
},
"required": [
"address"
],
"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"
}
},
"builder-code": {
"info": {
"a": "bc_vz5zyuko"
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"a": {
"description": "App builder code",
"pattern": "^[a-z0-9_]{1,32}$",
"type": "string"
},
"s": {
"description": "Service builder codes",
"items": {
"pattern": "^[a-z0-9_]{1,32}$",
"type": "string"
},
"maxItems": 11,
"type": "array"
},
"w": {
"description": "Wallet builder code",
"pattern": "^[a-z0-9_]{1,32}$",
"type": "string"
}
},
"type": "object"
}
},
"locus.freePreflight": {
"coverageBeforeCharge": true,
"laneTool": "locus_lane_availability",
"mcpUrl": "https://mcp.locus.report/mcp",
"recommendedTool": "locus_coverage_check",
"skillInstall": "npx @velinussage/locus-agent-skill add",
"skillUrl": "https://api.locus.report/.well-known/skill.md",
"toolsCallUrl": "https://api.locus.report/tools/call",
"toolsListUrl": "https://api.locus.report/tools/list",
"unsupportedReturnsFreeDiagnostic": true,
"version": 2
},
"offer-receipt": {
"info": {
"offers": [
{
"acceptIndex": 0,
"format": "eip712",
"payload": {
"amount": "790000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"network": "eip155:8453",
"payTo": "0xF121fbeceC43e1B616D47285851c20d5fC64431b",
"resourceUrl": "https://api.locus.report/api/locus-rental-operations-brief",
"scheme": "exact",
"validUntil": 1789158211,
"version": 1
},
"signature": "0xa45eb87fef887ba8434e4378bb7de0d3076d7f456fa9b601d0d159e52258dd7713ebe2e376b53d27cc64cdfe8f44a757e7fb507343fec09dd2d88e332a164f041c"
}
]
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"offers": {
"items": {
"properties": {
"acceptIndex": {
"type": "integer"
},
"format": {
"type": "string"
},
"payload": {
"properties": {
"amount": {
"type": "string"
},
"asset": {
"type": "string"
},
"network": {
"type": "string"
},
"payTo": {
"type": "string"
},
"resourceUrl": {
"type": "string"
},
"scheme": {
"type": "string"
},
"validUntil": {
"type": "integer"
},
"version": {
"type": "integer"
}
},
"required": [
"version",
"resourceUrl",
"scheme",
"network",
"asset",
"payTo",
"amount"
],
"type": "object"
},
"signature": {
"type": "string"
}
},
"required": [
"format",
"signature"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"offers"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.locus.report/api/locus-rental-operations-brief" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.locus.report/api/locus-rental-operations-brief");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.locus.report/api/locus-rental-operations-brief")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/13052.json, and this resource appears in /discovery/resources and /discovery/search.