Provenance
Freshness & coverage
Methods (7)
searchWells
readSearch CA wells by operator/county/field/district/status/type/api/bbox.
EntitieswellInput schema
{ "type": "object", "properties": { "operator": { "type": "string" }, "county": { "type": "string" }, "field": { "type": "string" }, "district": { "type": "string" }, "wellStatus": { "type": "string" }, "wellType": { "type": "string" }, "status": { "type": "string" }, "type": { "type": "string" }, "api": { "type": "string" }, "bbox": { "type": "array", "items": { "type": "number" } }, "limit": { "type": "number" }, "offset": { "type": "number" } }, "additionalProperties": false }getWellDetail
readFull well record by API number.
Required paramsapi or apiNumber or api_numberEntitieswellInput schema
{ "type": "object", "properties": { "api": { "type": "string" }, "apiNumber": { "type": "string" }, "api_number": { "type": "string" } }, "additionalProperties": false, "allOf": [ { "anyOf": [ { "required": [ "api" ] }, { "required": [ "apiNumber" ] }, { "required": [ "api_number" ] } ] } ] }countWells
readCount wells matching criteria (no records returned).
EntitieswellInput schema
{ "type": "object", "properties": { "operator": { "type": "string" }, "county": { "type": "string" }, "field": { "type": "string" }, "district": { "type": "string" }, "wellStatus": { "type": "string" }, "wellType": { "type": "string" }, "status": { "type": "string" }, "type": { "type": "string" } }, "additionalProperties": false }searchWellsByRadius
readWells within radius (miles) of latitude/longitude.
Required paramslatitudelongitudeEntitieswellInput schema
{ "type": "object", "properties": { "latitude": { "type": "number" }, "longitude": { "type": "number" }, "radiusMiles": { "type": "number" }, "limit": { "type": "number" } }, "additionalProperties": false, "required": [ "latitude", "longitude" ] }searchFacilities
readCalGEM facilities by operator/county/type/bbox.
EntitiesrecordInput schema
{ "type": "object", "properties": { "operator": { "type": "string" }, "county": { "type": "string" }, "facilityType": { "type": "string" }, "bbox": { "type": "array", "items": { "type": "number" } }, "limit": { "type": "number" }, "offset": { "type": "number" } }, "additionalProperties": false }searchIncidents
readOil & gas incidents by operator, field, incident type/status, year, or bbox.
EntitiesincidentInput schema
{ "type": "object", "properties": { "operator": { "type": "string" }, "year": { "type": "number" }, "field": { "type": "string" }, "incidentType": { "type": "string" }, "incidentStatus": { "type": "string" }, "bbox": { "type": "array", "items": { "type": "number" } }, "limit": { "type": "number" }, "offset": { "type": "number" } }, "additionalProperties": false }searchNotices
readNotices of intent by operator, county, type, or status. County maps to California API prefixes.
EntitiespermitInput schema
{ "type": "object", "properties": { "operator": { "type": "string" }, "county": { "type": "string" }, "noticeType": { "type": "string" }, "status": { "type": "string" }, "limit": { "type": "number" }, "offset": { "type": "number" } }, "additionalProperties": false }
