Texas RRC Oil & Gas Well Operator Scraper avatar

Texas RRC Oil & Gas Well Operator Scraper

Pricing

Pay per event

Go to Apify Store
Texas RRC Oil & Gas Well Operator Scraper

Texas RRC Oil & Gas Well Operator Scraper

Scrapes Texas Railroad Commission (RRC) oil and gas well data. Returns API number, operator, lease, field, county, district, well type, on-schedule status, and drilled depth. Covers all 13 RRC districts and over 300k wells. Built for mineral rights research, energy analytics, and landman databases.

Pricing

Pay per event

Rating

0.0

(0)

Developer

BowTiedRaccoon

BowTiedRaccoon

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Share

Scrapes Texas Railroad Commission (RRC) oil and gas well data. Returns API number, operator, lease, field, county, district, well type, on-schedule status, and drilled depth. Covers all 13 RRC districts and over 300k wells. Built for mineral rights research, energy analytics, and landman databases.

What it returns

Each result is one well record with these fields:

FieldDescription
api_number8-digit API well number (RRC format)
stateState abbreviation (TX)
districtRRC district code (01-10, 6E, 7B, 7C, 8A)
countyCounty name
lease_numberRRC oil lease number or gas well ID
lease_nameName of the lease
well_numberWell number within the lease
field_nameOil or gas field name
operator_nameCurrent operator company name
well_typeWell type code (see below)
on_scheduleWhether well is on proration schedule (Y/N)
api_depthTotal drilled depth in feet
source_urlDirect URL to the well record on the RRC EWA system

Input

ParameterTypeRequiredDescription
districtsarrayYesRRC district codes to search. Valid: 01, 02, 03, 04, 05, 06, 6E, 7B, 7C, 08, 8A, 09, 10
countiesarrayNoTexas county FIPS codes (3-digit, e.g. 021 for Bastrop). Leave empty to iterate all oil-producing counties.
wellTypesarrayYesWell type codes: PR (Producing), SH (Shut In), AB (Abandoned), TA (Temp Abandoned), IN (Injection), NP (No Production)
maxItemsintegerYesMaximum number of well records to return

Example input

{
"districts": ["01", "02"],
"counties": ["021", "029"],
"wellTypes": ["PR"],
"maxItems": 100
}

Example output

{
"api_number": "4201500001",
"state": "TX",
"district": "01",
"county": "BASTROP",
"lease_number": "00001",
"lease_name": "STATE BASTROP",
"well_number": "1",
"field_name": "CEDAR CREEK",
"operator_name": "PIONEER NATURAL RESOURCES USA INC",
"well_type": "PR",
"on_schedule": "Y",
"api_depth": "6500",
"source_url": "https://webapps2.rrc.texas.gov/EWA/wellboreQueryAction.do"
}

Well type codes

CodeDescription
PRProducing — well currently producing oil or gas
SHShut In — production suspended but well is capable
ABAbandoned — well permanently plugged and abandoned
TATemporarily Abandoned — inactive, not yet plugged
INInjection — used for enhanced recovery or disposal
NPNo Production — drilled but never produced

Data source

Texas Railroad Commission (RRC) Enhanced Web Access (EWA) system — the official public portal for Texas oil and gas well information. Updated by operators per RRC reporting requirements.

Direct link: https://webapps2.rrc.texas.gov/EWA/

Use cases

  • Mineral rights research — identify operators and production status for specific tracts
  • Energy analytics — enumerate wells by district, field, or operator
  • Landman databases — build or refresh lease/operator records across all 13 RRC districts
  • Regulatory monitoring — track well status changes (producing to abandoned, etc.)

Notes

  • RRC EWA returns up to 1,000 results per query. The actor searches by district x county x well type to stay within this limit.
  • County codes follow the Texas FIPS 3-digit format. If counties is empty, the actor iterates all oil and gas producing counties in each requested district.
  • The actor respects rate limits with 300 ms delays between requests to avoid overloading the RRC system.