API Reference
Stripe-grade endpoint documentation. Every parameter is statically typed, every error code is documented, and every snippet is copy-pasteable.
/api/public/v1/land-intel/assessAssess a coordinate
The primary scoring endpoint. Computes the 0–100 Rootfifteen score for a single GPS point. Free, public, no API key required. Accepts both GET (query params) and POST (JSON body).
BODY PARAMETERS
latitudeFloat [-90.0, 90.0]requiredWGS84 decimal degrees. Rounded to 6 fractional digits.
longitudeFloat [-180.0, 180.0]requiredWGS84 decimal degrees.
modeEnum<"agriculture"|"infrastructure">optionalSelects the engine specification used to compute the score. Defaults to "agriculture".
buffer_metersInt [0, 5000]optionalReserved for future use. Default 0 (point sample).
ERROR STATES
# Free · public · no API key required
curl -X POST https://rootfifteen.lovable.app/api/public/v1/land-intel/assess \
-H "Content-Type: application/json" \
-d '{
"latitude": 19.0760,
"longitude": 72.8777,
"mode": "infrastructure"
}'
# GET form (handy for quick checks):
curl "https://rootfifteen.lovable.app/api/public/v1/land-intel/assess?latitude=19.076&longitude=72.8777&mode=infrastructure"123456789101112131415161718192021222324{ "request_id": "req_3kx9aLp2qWmZb1c2", "status": "ok", "engine": "infrastructure.v2.8", "coordinates": { "latitude": 19.076, "longitude": 72.8777 }, "buffer_meters": 0, "mode": "infrastructure", "rootfifteen_score": 64.18, "classification": "MARGIN_CAUTION", "components": { "climate": 71.4, "terrain": 92.0, "georisk": 41.0 }, "observations": { "mean_temperature_c": 27.6, "annual_precipitation_mm": 2143.5, "elevation_m": 14, "seismic_events_5yr": 6, "seismic_max_magnitude_5yr": 4.7 }, "generated_at": "2026-06-25T09:14:22Z", "latency_ms": 412 }
A single integer. A deep pipeline.
Rootfifteen exposes one normalized 0–100 number. Under it sits a deterministic data-fusion of temporal optical biophysics, Synthetic Aperture Radar deformation arrays, and Digital Elevation Models.
An API versus a clipboard.
How Rootfifteen's continuous pipeline compares to the legacy field-and-rig methods still embedded in insurance underwriting and civil engineering compliance.