Provenance
Freshness & coverage
Methods (5)
searchOilGasWells
readFL permitted O&G wells (~1.48K). Filter county UPPERCASE, operator, status, oilField, bbox/near.
EntitieswellInput schema
{ "type": "object", "properties": { "county": { "type": "string", "examples": [ "COLLIER" ] }, "operator": { "type": "string" }, "oilField": { "type": "string" }, "status": { "type": "string", "examples": [ "PROD" ] }, "permitNo": { "type": "string" }, "apiNumber": { "type": "string" }, "wellName": { "type": "string" }, "fedLandsOnly": { "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 }Counties stored UPPERCASE (SANTA ROSA, COLLIER, HENDRY).
searchEnvironmentalSites
readFDEP cleanup sites (~10.2K). Filter category PETRO/BROWN/PFAS/SUPER/OTHCU, status, businessName.
Input schema
{ "type": "object", "properties": { "category": { "type": "string", "examples": [ "PFAS" ] }, "status": { "type": "string" }, "businessName": { "type": "string" }, "city": { "type": "string" }, "countyId": { "type": "number" }, "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 }No county-name string — only numeric CC2_COUNTY_ID. Use bbox or city.
searchManagedLands
readTyped lands: brownfield | aquatic-preserve | conservation-land. Filter name/county/managingAgency.
Required paramstypeInput schema
{ "type": "object", "properties": { "type": { "type": "string", "examples": [ "aquatic-preserve" ], "oneOf": [ { "type": "string", "enum": [ "brownfield" ] }, { "type": "string", "enum": [ "aquatic-preserve" ] }, { "type": "string", "enum": [ "conservation-land" ] } ] }, "name": { "type": "string" }, "county": { "type": "string" }, "managingAgency": { "type": "string" }, "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, "required": [ "type" ] }Counts: brownfield 620, aquatic-preserve 44, conservation-land 3215.
getWellByPermit
readSingle well lookup by PERMITNO or API_NO (Florida DEP Oil and Gas).
Entitiespermit, wellInput schema
{ "type": "object", "properties": { "permitNo": { "type": "string", "examples": [ "127" ] }, "apiNumber": { "type": "string" } }, "additionalProperties": false }getServiceInfo
readSchema, record counts, and enum values for any of the 5 services (Florida DEP Oil and Gas).
EntitiesmetadataInput schema
{ "type": "object", "properties": { "service": { "oneOf": [ { "type": "string", "enum": [ "oilGasWells" ] }, { "type": "string", "enum": [ "cleanupSites" ] }, { "type": "string", "enum": [ "brownfieldAreas" ] }, { "type": "string", "enum": [ "aquaticPreserves" ] }, { "type": "string", "enum": [ "conservationLands" ] } ] } }, "additionalProperties": false }
