Skip to main content

⚠️ This page has been moved

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...

Go to New Documentation

🇺🇸 United States - SSN Verification

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.

Endpoint

GET https://api.verifik.co/v2/usa/ssn

Headers

NameValue
Content-Typeapplication/json
AuthorizationBearer <token>

Parameters

NameTypeRequiredDescription
documentNumberstringYesSSN to be queried, it must be written exactly as it appears on the document. Example: 123-45-678

Request

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);
}

For complete and updated documentation, visit: /identity/united-states