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
{ "success": true, "suspectDetails": { "userId": 1234567890, "username": "Dook", "avatarThumbnail": "https://example.com/avatar123.png" }, "records": [ { "recordType": "Arrest", "dateArrested": "2025-02-25", "arrestingOfficerDetails": { "username": "Ruktuk5000", "avatarThumbnail": "https://example.com/officer1.png" }, "crimes": [ "Robbery", "Unlicensed possession of a firearm" ], "arrestReport": "Within Lander city limits; bla bla" } ], "totalRecords": 1, "totalArrests": 1, "totalCitations": 0, "status": 200}