Consumer Trace

he Consumer Trace service enables a user to submit a South African ID Number and in return the user will receive the following information, Registered Names and Surname, Date of Birth., Age, Gender, Last 5 Know Addresses, Last 5 Know Telephones, Last 5 Know employers and Deceased Status. Please see Extended Documentation for further detailed explanations of how to use this service

POSThttps://api.akibaone.com/api/consumertrace
Authorization
Body
id_numberstring

South African ID number

consentboolean

By using this API, you acknowledge that you have read, understood, and agree to be bound by these Terms of Service. If you have any questions or concerns, please contact us

Response
Body
successboolean
messagestring
idstring
Request
const response = await fetch('https://api.akibaone.com/api/consumertrace', {
    method: 'POST',
    headers: {
      "Content-Type": "application/json"
    },
    body: JSON.stringify({}),
});
const data = await response.json();
Response
{
  "success": false,
  "message": "text",
  "id": "text"
}