Provenance
Freshness & coverage
Methods (5)
searchOilGasLeases
readOSLI O&G lease polygons (~15 (WY Office of State Lands & Investments).4K).
EntitiesleaseInput schema
{ "type": "object", "properties": { "leaseNumber": { "type": "string", "examples": [ "12-00396" ] }, "bbox": { "type": "array", "items": { "type": "number" } }, "near": { "type": "object", "properties": { "lat": { "type": "number" }, "lon": { "type": "number" }, "radiusMiles": { "type": "number" } }, "required": [ "lat", "lon", "radiusMiles" ], "additionalProperties": false }, "limit": { "type": "number" }, "format": { "oneOf": [ { "type": "string", "enum": [ "records" ] }, { "type": "string", "enum": [ "geojson" ] } ] } }, "additionalProperties": false }Use searchUpcomingAuctionLands for rich county/acres/bid-per-acre attributes.
searchSurfaceOwnership
readOSLI State Ownership parcels (~31.6K). Filter fundCode/township/range/surfaceOnly. NO county column.
Entitiesland, ownershipInput schema
{ "type": "object", "properties": { "fundCode": { "type": "string", "examples": [ "CS" ] }, "activeOnly": { "type": "boolean" }, "township": { "type": "string" }, "range": { "type": "string" }, "surfaceOnly": { "type": "boolean" }, "bbox": { "type": "array", "items": { "type": "number" } }, "near": { "type": "object", "properties": { "lat": { "type": "number" }, "lon": { "type": "number" }, "radiusMiles": { "type": "number" } }, "required": [ "lat", "lon", "radiusMiles" ], "additionalProperties": false }, "limit": { "type": "number" }, "format": { "oneOf": [ { "type": "string", "enum": [ "records" ] }, { "type": "string", "enum": [ "geojson" ] } ] } }, "additionalProperties": false }fundCode accepts 2-3 letter code (CS/FL/SR) or descriptive substring.
searchSchoolSections
readCommon School trust sections (FundCode=CS, ~20K). Sec 16+36 analog.
EntitiesrecordInput schema
{ "type": "object", "properties": { "township": { "type": "string", "examples": [ "47" ] }, "range": { "type": "string", "examples": [ "73" ] }, "surfaceOnly": { "type": "boolean" }, "bbox": { "type": "array", "items": { "type": "number" } }, "near": { "type": "object", "properties": { "lat": { "type": "number" }, "lon": { "type": "number" }, "radiusMiles": { "type": "number" } }, "required": [ "lat", "lon", "radiusMiles" ], "additionalProperties": false }, "limit": { "type": "number" }, "format": { "oneOf": [ { "type": "string", "enum": [ "records" ] }, { "type": "string", "enum": [ "geojson" ] } ] } }, "additionalProperties": false }Filter twp/rge/surfaceOnly. NO county column — use bbox/PLSS.
searchUpcomingAuctionLands
readOSLI LARCS auction inventory (~195 rows). Rich county/acres/bidPerAcre attributes. NO geometry.
EntitiesrecordInput schema
{ "type": "object", "properties": { "county": { "type": "string", "examples": [ "Campbell" ] }, "fundCode": { "type": "string" }, "minAcres": { "type": "number" }, "excludeWithdrawn": { "type": "boolean" }, "limit": { "type": "number" }, "format": { "type": "string", "enum": [ "records" ] } }, "additionalProperties": false }Filter county (Title Case), fundCode, minAcres, excludeWithdrawn (default).
getServiceInfo
readSchema + record counts for any of the 3 services (WY Office of State Lands & Investments).
EntitiesmetadataInput schema
{ "type": "object", "properties": { "service": { "type": "string", "examples": [ "ownership" ] } }, "additionalProperties": false }
