post https://sandbox.crimescan.ai/v1/cyber_crime/search
HTTP POST
URL: https://prod.crimescan.ai/v1/cyber_crime/search
Function: search call
Parameters : service type, input id
Output Type : JSON
Fields | Description | Required/Optional |
---|---|---|
service | "mobile","vehicle","upi","bank" | Required |
id | number or id as per service | Required |
Example:
curl -X POST "https://prod.crimescan.ai/v1/cyber_crime/search
-H "Content-Type: application/json"
-H "Authorization: Bearer xxxxxxx"
-d '{
"service":"vehicle",
"id" :"MH27CD5217"
}'
Response :
If success
{
"report": "match found",
"cases": [
{
"mobile_no": [],
"petname": "Gopichand Tekchand Kherde",
"resname": "P S Warud",
"caseno": "201900001322020",
"orderdt": "2020-06-09",
"regyear": 2020,
"source": "District Court",
"state_name": "Maharashtra",
"order_link": "https://sisypheans.s3-ap-south-1.amazonaws.com/8a518adfed4610b62b61dfad2f33b074"
}
],
"other_src": ""
}
HTTP Status Codes:
HTTP Codes | Explanation |
---|---|
200 | Ok |
422 | Incorrect Input, Invalid Verify Id, Search type can be entity or individual |
401 | Authentication Failed |
503 | Search server overload |
500 | Server Error: The server encountered an unexpected condition or encountered an error while processing the request. Please try again later |