Harris County Court Records Scraper avatar

Harris County Court Records Scraper

Under maintenance

Pricing

from $1.60 / 1,000 record scrapeds

Go to Apify Store
Harris County Court Records Scraper

Harris County Court Records Scraper

Under maintenance

Extract probate and civil court records from Harris County (TX) District Clerk. Search by party name or date range. Returns case info, parties, attorneys, and filing event history.

Pricing

from $1.60 / 1,000 record scrapeds

Rating

0.0

(0)

Developer

BowTiedRaccoon

BowTiedRaccoon

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

Extract probate and civil court records from the Harris County (TX) District Clerk public search portal (hcdistrictclerk.com).

Search by party name or filing date range. Returns case number, case style, court, filing date, case type, case status, and the matched party's role.


What you get

Each result row contains:

FieldDescription
caseNumberCase (cause) number — unique identifier
caseUrlLink to the case detail page on hcdistrictclerk.com
caseStyleFull case title (e.g. Smith v. Jones (Civ))
courtCourt number
filedDateDate the case was filed (M/D/YYYY)
caseTypeCase/offense type (e.g. NOTE, INSURANCE POLICY)
caseStatusStatus indicator from case number (Purged, Active, Disposed)
partiesMatched party name and role (e.g. DEFENDANT - JOHN SMITH)
scrapedAtISO-8601 timestamp of extraction

Note: Attorney details and full filing history are available on the linked case detail pages, which require a registered hcdistrictclerk.com account to access directly. This actor extracts all fields available from the public search results.


Input

ParameterTypeDefaultDescription
searchModestringparty_nameparty_name or date_range
partyNamestringParty to search. Format: LastName, FirstName or last name only. Required for party_name mode.
partyRolestringAA = All, D = Defendant, P = Plaintiff
dateFromstringStart date MM/DD/YYYY. Required for date_range mode.
dateTostringEnd date MM/DD/YYYY. Defaults to today.
courtIdstringFilter by court ID (date_range mode only).
maxItemsinteger10Maximum number of case records to return.
{
"searchMode": "party_name",
"partyName": "Johnson",
"partyRole": "A",
"maxItems": 50
}
{
"searchMode": "date_range",
"dateFrom": "01/01/2024",
"dateTo": "12/31/2024",
"maxItems": 100
}

How it works

  1. Opens the Harris County District Clerk public search portal using a Playwright browser with a US IP.
  2. Activates the appropriate search tab (party name or filing date).
  3. Submits the search form via ASP.NET UpdatePanel async postback.
  4. Parses the search results table directly — extracts all available fields from the result rows.
  5. De-duplicates by case number (the table can return multiple rows per case when multiple parties match).
  6. Returns up to maxItems unique cases.

The search portal returns up to 100 results per query. For large result sets, narrow your search using partyRole or a tighter date range.


Coverage

  • Court types: Civil and probate cases filed in Harris County District Courts.
  • Historical depth: Records back to the 1970s (older cases shown as "Purged").
  • Live data: Search results reflect the current state of the District Clerk's database.

Limitations

  • Maximum 100 results per search query (site limit).
  • Case detail pages (attorney info, full filing history) require a registered hcdistrictclerk.com account — this actor extracts the publicly available search result fields only.
  • US IP required — the site blocks non-US traffic.