Permit records for an address, exact parcel set, or point
Permit records for an address, exact parcel set, or point. Perfect for: 'check permits for these parcels' or 'nearby permit activity'. Exact subjects resolve parcel-first to the legal authority, including unincorporated Wake County Tyler EnerGov. Exact parcel requests never fall back to Census residential trends. Charged only when an official record source answers. Permit and inspection workflow fields are not construction, compliance, or occupancy conclusions.
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-metro-permits
| Category | Company and compliance |
|---|---|
| Provider host | api.locus.report |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 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 | 3523 ms |
Example input (from the provider)
{
"body": {
"city": "chicago",
"latitude": 41.8827,
"longitude": -87.6233,
"radiusMeters": 500
},
"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,
"properties": {
"city": {
"maxLength": 40,
"minLength": 3,
"type": "string"
},
"county": {
"maxLength": 80,
"minLength": 2,
"type": "string"
},
"latitude": {
"maximum": 90,
"minimum": -90,
"type": "number"
},
"longitude": {
"maximum": 180,
"minimum": -180,
"type": "number"
},
"parcelId": {
"maxLength": 80,
"minLength": 1,
"type": "string"
},
"parcelIds": {
"items": {
"maxLength": 80,
"minLength": 1,
"type": "string"
},
"maxItems": 25,
"minItems": 1,
"type": "array"
},
"place": {
"maxLength": 240,
"minLength": 3,
"type": "string"
},
"radiusMeters": {
"maximum": 3000,
"minimum": 50,
"type": "integer"
},
"sinceDate": {
"type": "string"
},
"state": {
"maxLength": 2,
"minLength": 2,
"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"
}