๐Ÿ“š RECAP Federal Court Docket Search avatar

๐Ÿ“š RECAP Federal Court Docket Search

Pricing

from $20.00 / 1,000 test analyzeds

Go to Apify Store
๐Ÿ“š RECAP Federal Court Docket Search

๐Ÿ“š RECAP Federal Court Docket Search

Search the free RECAP archive of PACER federal-court dockets (CourtListener): case name, court, dates, cause, nature of suit. A Docket-Navigator-style alternative for litigation analysts.

Pricing

from $20.00 / 1,000 test analyzeds

Rating

0.0

(0)

Developer

NexGenData

NexGenData

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

0

Monthly active users

4 days ago

Last modified

Categories

Share

Search the free RECAP archive of PACER federal-court dockets and opinions โ€” case name, court, filing date, and docket number โ€” as pay-per-record JSON, a Docket-Navigator-style alternative without the litigation-analytics subscription.

PACER is the official record of federal litigation, but it charges per page and offers no real search. The RECAP archive โ€” built by the Free Law Project and surfaced through CourtListener โ€” mirrors millions of those PACER dockets and federal court opinions and makes them freely searchable. This actor turns that archive into a structured query interface: pass a case name, party, court, topic, or date and get back clean records โ€” case name, court, filing date, docket number, and a direct URL โ€” ready for a litigation-analytics pipeline.

For a litigation analyst, IP counsel, or legal-data team, the win is that you can ask docket-level questions across the federal courts โ€” "every case filed in the Federal Circuit since January mentioning a party" โ€” and get machine-readable answers, instead of paying PACER per page or licensing an enterprise litigation-analytics platform to do the same search behind a login.

Why use this

PACER itself is a pay-per-page system with no usable full-text search; you have to know exactly what you are looking for and pay to look. The commercial platforms that layer analytics on top of dockets โ€” Lex Machina, Docket Navigator, Bloomberg Law's litigation suite โ€” wrap the same public docket data in seat licences that run well into five figures a year.

This actor gives you searchable access to the RECAP archive as structured JSON, pay-per-result, with no seat and no commitment. You choose whether to search court opinions or RECAP dockets, narrow by court and date, and pull back records you can load straight into your own case-tracking or analytics workflow.

  • Two search modes in one actor. searchType=r searches RECAP dockets; searchType=o searches court opinions โ€” covering both the case-tracking and the precedent-research workflow.
  • Court and date narrowing. Filter by court ID (e.g. scotus, cafc) and dateFiledAfter to scope a search to the jurisdiction and timeframe you care about.
  • Higher limits when you need them. Supply an optional free CourtListener token to raise rate limits for heavier pulls.

What you get

Each record returned by the actor is one docket or opinion match, in flat JSON:

  • caseName โ€” the case caption
  • court โ€” the court the case was filed in
  • dateFiled โ€” the filing date
  • docketNumber โ€” the docket number
  • url โ€” a direct link to the record on CourtListener

The schema is stable and additive โ€” safe to load into a litigation-tracking database and refresh on a schedule.

Use cases

  • Docket monitoring. Run a saved query for a party, topic, or court on a schedule and surface newly-filed cases as they enter the RECAP archive โ€” a Docket-Navigator-style watchlist without the subscription.
  • IP litigation tracking. Filter to the Federal Circuit (cafc) or the patent-heavy district courts and search by party or technology to follow patent and trademark disputes.
  • Precedent research. Switch to searchType=o to search court opinions for relevant holdings, building a citation list for a brief or memo.
  • Party / competitor litigation mapping. Search a company name across dockets to assemble its federal-litigation footprint โ€” useful for diligence, risk assessment, and competitive intelligence.
  • Practice-group business development. Track new filings in a practice area or court to identify potential clients or co-counsel opportunities as disputes emerge.
  • Academic and empirical legal research. Pull dockets by court and date window to build datasets for studies of filing trends, nature-of-suit distributions, or court caseloads.
  • Newsroom and analyst monitoring. Watch a court or topic for newly-docketed high-profile cases to break or contextualize a story.

Sample output

{
"caseName": "Acme Innovations LLC v. Beta Devices Inc.",
"court": "Court of Appeals for the Federal Circuit",
"dateFiled": "2026-05-12",
"docketNumber": "2026-1487",
"url": "https://www.courtlistener.com/docket/68123456/acme-innovations-llc-v-beta-devices-inc/"
}

A run with searchType=r, court=cafc, and a recent dateFiledAfter returns one such record per matching docket โ€” the working list for a Federal Circuit watch.

Input parameters

ParameterLabelDescription
searchTypeSearch typeo = court opinions, r = RECAP dockets.
queryQueryFull-text search across case name, party, or topic.
courtCourtCourt ID filter (e.g. scotus, cafc).
dateFiledAfterFiled afterOnly records filed on/after this date (YYYY-MM-DD).
maxResultsMax resultsMaximum number of records to return.
courtListenerTokenCourtListener token (optional)Optional free CourtListener token to raise rate limits.

How to use

Python (apify-client)

from apify_client import ApifyClient
client = ApifyClient("YOUR_TOKEN")
run = client.actor("nexgendata/recap-pacer-docket-search").call(run_input={
"searchType": "r",
"query": "patent infringement",
"court": "cafc",
"dateFiledAfter": "2026-01-01",
"maxResults": 100,
})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item["dateFiled"], item["court"], item["docketNumber"], item["caseName"])

cURL

curl -X POST "https://api.apify.com/v2/acts/nexgendata~recap-pacer-docket-search/run-sync-get-dataset-items?token=YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"searchType": "r",
"query": "patent infringement",
"court": "cafc",
"dateFiledAfter": "2026-01-01",
"maxResults": 100
}'

Schedule a saved query daily via Apify's scheduler and route new matches to Slack, a case-management system, or your warehouse via webhook.

Pricing

This actor runs on Apify's pay-per-event model โ€” $0.10 per result record, plus a negligible one-time actor-start charge per run. No subscription, no seat, no minimum.

Worked examples:

  • A daily docket watch returning 20 new matches โ†’ **$2.00 per run**
  • A 100-record litigation-footprint pull on a company โ†’ ~$10.00
  • A precedent search returning 50 opinions โ†’ ~$5.00

You pay only for records pushed to the dataset. PACER, by contrast, charges per page viewed โ€” this actor reads the free RECAP mirror instead. Browse the full catalog at https://apify.com/nexgendata?fpr=2ayu9b

How this compares to Bloomberg Law / Lex Machina / Docket Navigator

SourcePriceWhat you get
PACER (official)$0.10 / page, no real searchAuthoritative dockets, but pay-per-page and no usable full-text search
Lex Machina / Docket Navigator~$tens of thousands / seat / yrDeep litigation analytics and outcome data โ€” seat-locked
Bloomberg Law litigationEnterprise subscriptionDockets plus analytics inside a full legal-research platform
NexGenData RECAP Docket SearchPPE $0.10 / recordSearchable RECAP dockets and opinions with case name, court, date, docket number, and link, as JSON

The analytics platforms add outcome prediction, judge analytics, and timing models on top of the underlying dockets โ€” real value if you need it. But if your job is finding and tracking the dockets themselves across the federal courts, this actor gives you searchable access to the free RECAP archive as structured data your own tools can consume, priced per record rather than per seat or per PACER page.

FAQ

Q: What is RECAP and how does it relate to PACER? A: RECAP is a free archive, maintained by the Free Law Project, of PACER documents that users have purchased and contributed back. CourtListener makes it searchable. This actor queries that public archive, so you are not charged PACER's per-page fees.

Q: What is the difference between the two search types? A: searchType=r searches RECAP dockets (the case-tracking view); searchType=o searches court opinions (the precedent-research view). Choose the one that matches your task.

Q: Do I need a CourtListener token? A: No โ€” it is optional. Supplying a free CourtListener token raises your rate limits, which helps on heavier or more frequent pulls.

Q: Is every PACER docket in RECAP? A: No. RECAP contains the subset of PACER documents that have been contributed to the archive, so coverage is broad but not exhaustive. For guaranteed-complete coverage of a specific case, PACER itself remains the system of record.

Q: How current is the data? A: Each run queries CourtListener live, so results reflect what is in the archive at run time. Schedule daily for ongoing monitoring.

Schema stability & versioning

This actor follows NexGenData's additive-only schema contract. New fields may be added as new JSON keys (defaulting to null for older records), but existing fields are never renamed or removed without a major-version bump and advance notice. Date formats and field semantics are never silently changed. Build your litigation-tracking ETL on the five documented fields with confidence.

  • The actor queries the public, free RECAP archive via CourtListener โ€” federal court records made openly searchable by the Free Law Project.
  • No PACER credentials are used or stored; the actor reads the free mirror, not paid PACER directly.
  • Federal court records are public, but you remain responsible for complying with any sealing orders, privacy rules, and your jurisdiction's restrictions on downstream use.
  • Treat results as informational; verify against the primary docket before relying on them in a filing or legal decision.

Part of NexGenData's IP & legal intelligence lane โ€” pair this actor with:

Explore the full catalog of 200+ buyer-intent actors at https://apify.com/nexgendata?fpr=2ayu9b