Skip to main content
POST
/
v2
/
verification
/
crime-check
curl --request POST \
  --url https://bgv.konnectnxt.com/api/v2/verification/crime-check/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Priya Sharma"
}
'
{
  "status": "success",
  "code": 200,
  "message": "Operation completed successfully",
  "data": {
    "status": "initiated",
    "request_id": "2771138874513",
    "request_time": "16/02/2026 10:16:39",
    "message": "Crime check initiated successfully"
  },
  "credits_used": 151,
  "credits_remaining": 985101.5
}

Required Information

  • Name (mandatory): Full name of the individual

Optional Information

Providing these details improves accuracy:
  • Father’s name
  • Date of birth (DD-MM-YYYY format)
  • Current residential address
  • PAN number

Response

Upon successful initiation, you’ll receive a unique request_id which can be used to fetch the report later using the Get Crime Check Report endpoint.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
name
string
required

Full name of the individual (required)

Required string length: 2 - 255
father_name
string

Father's full name (optional but improves accuracy)

Maximum string length: 255
dob
string

Date of birth in DD-MM-YYYY format (optional)

address
string

Current residential address (optional, minimum 10 characters if provided)

Required string length: 10 - 255
pan_number
string

PAN number in format ABCDE1234F (optional)

Maximum string length: 10

Response

Crime check initiated successfully

status
enum<string>
required

Overall status of the API

Available options:
success,
error
code
integer
required

HTTP status code

Example:

400

message
string
required

Description of the response or error

Example:

"Invalid request parameters"

credits_used
integer
required

Represents the total number of credits used in this request.

Example:

3

credits_left
integer
required

Represents the remaining credits available for use.

Example:

4040

data
object