Public reference

Claw Score APIs

Three routes proxy the scraping service: scrape-party, job-status, get-csv. Anyone can read this page; actually sending a request needs an API key. Every call is logged against the key that made it. Each key can make 60 calls per minute; past that, calls get a 429 with a Retry-After header.

Base URLhttps://claw-apis.clawlaw.in
Sent as the x-api-key header on every request below. Kept only in this browser.
POST/api/ml/scrape-party
https://claw-apis.clawlaw.in/api/ml/scrape-party

Kicks off a court-records scrape for a party name across the given case years. Proxies the ML service’s POST /scrape_party. Returns a request_id, used as the job id for the other two calls.

Request body
Raw JSON that will be sent
{
  "party_name": "",
  "case_years": []
}
Response

Send the request to see a response here.