Screen one exact US address using verified parcel identity, dated Google Solar roof eviden
Screen one exact US address using verified parcel identity, dated Google Solar roof evidence, utility candidates, cited programs, and a separately labeled historical GridPulse reference. No score, installation recommendation, current incentive claim, or utility-service conclusion. Licensed results are private and no-store. Missing or mismatched physical evidence is charge-free. Install agent skill: npx @velinussage/locus-agent-skill add.
490000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-09
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": "490000",
"maxTimeoutSeconds": 180
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"address": "1600 Ridge Rd, Raleigh, NC 27607",
"financialZip": "27607",
"systemKw": 8
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"generatedAt": "2026-09-09T00:00:00.000Z",
"kind": "solar_property_screen_replay",
"message": "Example replay descriptor; not live data.",
"originalResultDelivered": true,
"recheckRequired": true,
"sourcePolicies": [],
"status": "licensed_result_not_retained"
},
"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,
"type": "string"
},
"financialZip": {
"pattern": "^\\d{5}$",
"type": "string"
},
"systemKw": {
"default": 8,
"maximum": 20,
"minimum": 2,
"type": "number"
}
},
"required": [
"address",
"systemKw"
],
"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"
},
"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": "490000",
"asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
"network": "eip155:8453",
"payTo": "0xf121fbecec43e1b616d47285851c20d5fc64431b",
"resourceUrl": "https://api.locus.report/api/locus-solar-property-screen",
"scheme": "exact",
"validUntil": 1788938973,
"version": 1
},
"signature": "0x0d117e3838e050786b149347d867eb1e1a267e8ee8110c32b760651495fb4d5c2690ed55bf6e6a6c28fa28332e5b5a2bd00805cc1e8c129f63fb5f0e67ad40571c"
}
]
},
"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-solar-property-screen" # -> 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-solar-property-screen");
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-solar-property-screen")
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/13094.json, and this resource appears in /discovery/resources and /discovery/search.