VOOZH about

URL: https://apify.com/parseforge/caselaw-access-scraper/api/python

โ‡ฑ โš–๏ธ Harvard Caselaw Access Project Scraper API in Python ยท Apify


๐Ÿ‘ โš–๏ธ Harvard Caselaw Access Project Scraper avatar

โš–๏ธ Harvard Caselaw Access Project Scraper

Pricing

from $19.00 / 1,000 results

Go to Apify Store

โš–๏ธ Harvard Caselaw Access Project Scraper

Search the Harvard Caselaw Access Project for historical US court opinions. Export case name, citation, court, decision date, jurisdiction, judges, full opinion text, and headnotes as CSV, Excel, JSON, JSONL, XML, or HTML. Public-data export with no login required.

Pricing

from $19.00 / 1,000 results

Rating

0.0

(0)

Developer

๐Ÿ‘ ParseForge

ParseForge

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

a month ago

Last modified

Categories

Share

You might also like

CourtListener Opinions Scraper | US Court Rulings

parseforge/court-listener-opinions-scraper

Extract US court opinions from CourtListener with case name, court, judges, citations, date filed, and full opinion text. Filter by court, date range, or keyword. Built for legal research, AI training datasets, litigation tracking, and academic case law analysis.

Case Law Scraper

crawlergang/case-law-scraper

Search and retrieve US court opinions and case law from CourtListener - the largest open legal database with 4M+ court opinions. Search by keyword, filter by court, date range, and jurisdiction.

1

5.0

Case Law Scraper

crawlerbros/case-law-scraper

Search and retrieve US court opinions and case law from CourtListener - the largest open legal database with 4M+ court opinions. Search by keyword, filter by court, date range, and jurisdiction.

CourtListener Legal Search Scraper

crawlerbros/courtlistener-legal-search-scraper

Search US court opinions, federal dockets, and court listings from CourtListener.com - the Free Law Project's open database of 4M+ court opinions. No API key required. Filter by court, date range, and keyword.

CourtListener Opinion Scraper - US Court Case Law API

jungle_synthesizer/courtlistener-opinion-scraper

Crawl US court opinions from CourtListener (Free Law Project). 8M+ decisions from 3,350+ federal, state, and appellate courts. Filter by court, judge, date range, citation, or keyword. Returns case metadata, citations, precedential status, and opinion excerpts.

๐Ÿ‘ User avatar

BowTiedRaccoon

4

Federal Court Locator Scraper

parseforge/pacer-court-locator-scraper

Pull every US federal court (district, bankruptcy, appellate, special) with PACER court ID, FJC ID, RSS feed, court URL, jurisdiction code, citation string, and active status. Filter by jurisdiction, state, or court name. Export to JSON, CSV, or Excel for legal directories and court tracking.

You can access the โš–๏ธ Harvard Caselaw Access Project Scraper programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, youโ€™ll need an Apify account and your API token, found in Integrations settings in Apify Console.

๐Ÿ‘ Python

Python

๐Ÿ‘ JavaScript

JavaScript

CLI

๐Ÿ‘ OpenAPI

OpenAPI

HTTP

MCP

1from apify_client import ApifyClient
2
3# Initialize the ApifyClient with your Apify API token
4# Replace '<YOUR_API_TOKEN>' with your token.
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7# Prepare the Actor input
8run_input ={
9"reporter":"us",
10"query":"first amendment",
11"maxItems":10,
12}
13
14# Run the Actor and wait for it to finish
15run = client.actor("parseforge/caselaw-access-scraper").call(run_input=run_input)
16
17# Fetch and print Actor results from the run's dataset (if there are any)
18print("๐Ÿ’พ Check your data here: https://console.apify.com/storage/datasets/"+ run["defaultDatasetId"])
19for item in client.dataset(run["defaultDatasetId"]).iterate_items():
20print(item)
21
22# ๐Ÿ“š Want to learn more ๐Ÿ“–? Go to โ†’ https://docs.apify.com/api/client/python/docs/quick-start

โš–๏ธ Harvard Caselaw Access Project Scraper API in Python

The Apify API client for Python is the official library that allows you to use โš–๏ธ Harvard Caselaw Access Project Scraper API in Python, providing convenience functions and automatic retries on errors.

Install the apify-client

$pip install apify-client

Other API clients include:

โš–๏ธ Harvard Caselaw Access Project Scraper API in JavaScript

โš–๏ธ Harvard Caselaw Access Project Scraper API through CLI

โš–๏ธ Harvard Caselaw Access Project Scraper OpenAPI definition

โš–๏ธ Harvard Caselaw Access Project Scraper API