post https://sandbox.crimescan.ai/v1/global_check/search
This API allows clients to perform individual verification by supplying key identifying details like name, father’s name, and date of birth. It returns search results with configurable match multipliers, penalties, and optional fuzzy matching.
Endpoint:
POST https://apis.verify24x7.in/v1/global-check/search
Headers:
Content-Type: application/json
Authorization: Bearer <your_access_token>
Parameter | Type | Description |
---|---|---|
name | object | Contains the query string for the name and penalties for matching errors. ( Required if PAN number of individual not provided ) |
name.query | string | Full name of the individual (Required*). |
address | string | (optional) Contains string for address. |
father_name | object | (optional).Contains the query string for the father’s name and penalties for matching errors. |
father_name.query | string | (optional) Full name of the individual. |
dob | object | |
dob.query | string | (Optional) This field accepts a date in the YYYY-MM-DD format. It allows users to input an exact date of birth for the individual being searched. |
PAN | string | PAN of individual ( Required if name of individual not provided ) |
Status Code
Response | Status Code | Description | Data type | Example |
---|---|---|---|---|
Success Response | 200 | Returns a search_id for the initiated search. | json | { "search_id": "12345abcde" } |
Validation Error | 422 | Occurs when validation on the request data fails, such as incorrect date format, missing required fields, etc. | json | { "detail": [ { "loc": ["body", "name"], "msg": "field required", "type": "value_error.missing" } ] } |