v1

latestOpenAPI 3.0.32026-07-14108241269.2 KB
Court Verification

Court Check

Search court/litigation records using name and address.

post/verify/court_check

Request body

namestring required
addressstring required
user_idstring

Example request

{
  "name": "Rahul Sharma",
  "address": "Delhi India",
  "user_id": "user_001"
}

Response

Successful response

statusstring

Example response

{
  "status": "success",
  "result": {
    "strong_match": [
      {
        "caseId": "CASE123456",
        "case_code": "DLCT010012342020",
        "name": "Rahul Sharma",
        "category": "Criminal",
        "caseCourtDetails": "District Court Delhi",
        "stageOfCase": "hearing",
        "registration_year": "2020",
        "weightedPercentage": 92.3,
        "address": "Delhi India",
        "partyType": "Petitioner",
        "link": "https://example.com/case/CASE123456"
      }
    ],
    "possible_match": [
      {
        "caseId": "CASE123456",
        "case_code": "DLCT010012342020",
        "name": "Rahul Sharma",
        "category": "Criminal",
        "caseCourtDetails": "District Court Delhi",
        "stageOfCase": "hearing",
        "registration_year": "2020",
        "weightedPercentage": 92.3,
        "address": "Delhi India",
        "partyType": "Petitioner",
        "link": "https://example.com/case/CASE123456"
      }
    ],
    "eliminated_data": [
      {
        "caseId": "CASE123456",
        "case_code": "DLCT010012342020",
        "name": "Rahul Sharma",
        "category": "Criminal",
        "caseCourtDetails": "District Court Delhi",
        "stageOfCase": "hearing",
        "registration_year": "2020",
        "weightedPercentage": 92.3,
        "address": "Delhi India",
        "partyType": "Petitioner",
        "link": "https://example.com/case/CASE123456"
      }
    ],
    "totalResult": 2
  }
}