Developer Documentation & Reference

LandScope Spatial Intelligence API

High-performance, deterministic PostGIS REST API returning parcel boundaries, zoning standards, 2D setback envelopes, legal deed owner verification, and solar roof feasibility in sub-15ms.

Base URL: https://api.landscopeapi.com Auth: Bearer pk_live_... Spatial: EPSG:4326
POST /v1/feasibility/evaluate
Sub-15ms Edge Latency

Evaluates proposed architectural project parameters against published municipal land development codes. Computes dimensional standards (max height, max stories, FAR, lot coverage %), executes algebraic 2D setback buffer envelopes (ST_Buffer), and returns deterministic clearance status.

Request Body Parameters
FieldTypeDescription
address *stringUSPS standard property address
proposed_projectobjectTarget units, building height, footprint sqft, parking stalls
Response Attributes
  • overall_status: APPROVED_BY_RIGHT or VARIANCE_REQUIRED
  • spatial_envelope: Net buildable envelope sqft after negative 2D front/side/rear setback buffer corridors
  • owner_verification: Jaro-Winkler deed match & homestead flag
Live Request Execution
// Click 'Run Live' to execute against PostGIS cluster...
curl -X POST "http://localhost:3000/v1/feasibility/evaluate" \
  -H "Content-Type: application/json" \
  -d '{
    "address": "4812 E 7th St, Austin, TX 78702",
    "proposed_project": {
      "primary_use": "multifamily_residential",
      "target_units": 12,
      "building_footprint_sqft": 3200
    }
  }'
Status: 200 OK Latency: 12ms
GET /v1/solar/feasibility
IFC § 1205.2 Setbacks

Pre-engineers rooftop solar photovoltaic feasibility. Calculates gross building footprint, subtracts statutory 3ft fire ridge setbacks (IFC Section 1205 / NFPA 1), sizes the 400W panel array, calculates annual kWh output, and maps state-by-state Solar Rights Acts.

Query Parameters
ParamTypeDescription
address *stringProperty street address or APN
Live Solar Query
GET http://localhost:3000/v1/solar/feasibility?address=4812+E+7th+St%2C+Austin%2C+TX
Status: 200 OK Output: 33.2 kW (83 Panels)
POST /v1/verify/owner
Jaro-Winkler Matching

Cross-references applicant name against county deed tax rolls to eliminate renters and verify contract signing authority. Resolves living trusts, LLCs, and married couples.

Request Body Parameters
FieldTypeDescription
address *stringFull property address
applicant_name *stringName of lead or applicant to verify
Live Deed Verification
POST http://localhost:3000/v1/verify/owner
{
  "address": "4812 E 7th St, Austin, TX 78702",
  "applicant_name": "Carlos Martinez"
}
Confidence: 100% Match Owner: MARTINEZ CARLOS & ELENA

Anthropic Model Context Protocol (MCP)

Integrate LandScope tools directly into Cursor IDE, Claude Desktop, and LangChain agents in 60 seconds.

{ "mcpServers": { "landscope": { "command": "npx", "args": ["-y", "landscope-mcp"], "env": { "LANDSCOPE_API_KEY": "pk_live_YOUR_KEY" } } } }