Anymal OSDraftv0.1

API Reference

One keyed, Realie-compatible API across Earth Layer agents. A single base URL and key, with our data under Realie's field names, so a consumer swaps base URL plus key with no mapping change. The Land Agent property surface is live today; Water and Soil agents get their own surfaces next.

Authentication

Every request carries an Earth Layer API key. Pass it in X-API-Key, or Realie-style in Authorization (raw or as Bearer <key>). Keys are server-side secrets, so call from your backend rather than the browser. Request a key from the Anymal OS team.

curl "$BASE/public/land-agent/property/address-lookup?address=123+Main+St&state=ID" \
  -H "X-API-Key: $EARTHLAYER_KEY"

A missing or invalid key returns 401. A key without the required scope returns 403.

Land Agent

Live

Parcel-anchored property records across the supported states (about 40M parcels). Responses return a property object (or array) plus a metadata envelope. Each property carries identity, address, owner, acreage, assessor values, raw use code, and the Earth Layer landUseCategory classification of that code.

GET/public/land-agent/property/address-lookup

Resolve a street address to the single best-match property.

addressstring · requiredFree-form street address to resolve.
statestringTwo-letter state to sharpen the match (e.g. ID, CO, TX).
Returns { property, metadata }
Try it (sandbox)same-origin, no key needed here
GET/public/land-agent/property/parcel-id-lookup

Resolve an assessor parcel number to a property.

parcelIdstring · requiredAssessor parcel number.
statestringRecommended. Parcel numbers are not globally unique, so a state scope disambiguates.
Returns { property, metadata }
Try it (sandbox)same-origin, no key needed here

The metadata envelope returns limit, offset, count, and echoes any applied landUseFilter.

Water Agent

Planned

A water-right diligence surface (rights by location, by right number, and the parcels a right serves), built on the per-jurisdiction adapters (IDWR, CDSS, and more). Planned, on the same key and envelope.

Soil Agent

Planned

A national soil and forage surface (SSURGO map units, organic carbon, drainage, grazing capacity) keyed to the same parcel anchor. Planned, on the same key and envelope.

Source-backed records only. Every field is observed from an authoritative source and kept separate from interpretation. Not a legal opinion, an ownership or title determination, or a guarantee of supply.