Search for records and cases in the Clark County District Court online systems.
This endpoint allows you to search for cases through a query string.
The query string to search for cases. The query string can contain any information about the case.
The page number to retrieve
Rate limit
Responses
Returned when the request is successful
Returned when the rate limit has been exceeded
Returned when the query string is not provided
{ "status": 200, "success": true, "message": "Cases retrieved successfully", "data": { "cases": [ { "id": 1, "case_id": "00000000-0000-0000-0000-000000000000", "case_number": "CR-1234-25", "title": "India v. Pakistan (2024)", "assigned_by": "IndianTable5000", "status": "Active", "roblox_username": "User1", "roblox_userid": "123456", "filed_date": "2023-01-01", "petitioner": "Petitioner 1", "respondent": "Respondent 1", "defendants": "Defendant 1", "plaintiffs": "Plaintiff 1", "docket_id": "00000000-0000-0000-0000-000000000000", "docket_owner_username": "DocketOwner" } ], "total": 1 }}
This endpoint allows you to search a user's records by username.
The username of the user whose records you want to search
The page number to retrieve
Rate limit
Responses
Returned when the request is successful
Returned when the rate limit has been exceeded
Returned when the identifier is not provided
Returned when the user is not found
{ "status": 200, "success": true, "message": "Records retrieved successfully", "data": { "suspect": { "userId": 1234567890, "username": "RandomUser123", "avatarThumbnail": "https://example.com/avatar123.png" }, "records": [ { "recordType": "Arrest", "dateArrested": "11/01/2024", "arrestingOfficer": { "username": "Ruktuk5000", "avatarThumbnail": "https://example.com/officer1.png" }, "crimes": [ "Robbery", "Unlicensed possession of a firearm" ], "arrestReport": "Within Lander city limits; Cube; Suspect was found with a stolen vehicle and a weapon as a tourist." }, { "recordType": "Citation", "dateArrested": "10/25/2024", "arrestingOfficer": { "username": "HeJustCalledMeAMonkeyAgain", "avatarThumbnail": "https://example.com/officer2.png" }, "crimes": [ "Speeding" ], "arrestReport": "Out of city limits; MNG; Suspect was caught going 90mph in a posted 70." } ], "total": 2, "totalRecords": 2, "totalArrests": 2, "totalCitations": 0 }}