This URL belonged to the old GitBook documentation and is now in a new location.
New URL: /identity/united-states
You will be automatically redirected in 60 seconds...
The SSN Verification Service is a robust tool designed to verify Social Security Numbers (SSN) issued in the United States. This service allows users to quickly validate an SSN by providing details such as the issuing state and the first year of issuance. The response includes the SSN itself, the year it was first issued, the issuing state, and the validity status of the SSN. This tool is essential for ensuring the accuracy and authenticity of Social Security Numbers.
GET https://api.verifik.co/v2/usa/ssn| Name | Value |
|---|---|
| Content-Type | application/json |
| Authorization | Bearer <token> |
| Name | Type | Required | Description |
|---|---|---|---|
documentNumber | string | Yes | SSN to be queried, it must be written exactly as it appears on the document. Example: 123-45-678 |
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.verifik.co/v2/usa/ssn',
params: {
documentNumber: '123-45-678'
},
headers: {
'Accept': 'application/json',
'Authorization': 'Bearer <tu_token>'
}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}import http.client
conn = http.client.HTTPSConnection("api.verifik.co")
payload = ''
headers = {}
conn.request("GET", "/v2/usa/ssn?documentNumber=123-45-678", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))For complete and updated documentation, visit: /identity/united-states