Documentation

Getting started

The User Verification API provides a solution for confirming and cross-verifying user information by utilizing shared data points such as addresses, email, NIK, biller, and other key attributes. By simply inputting a name and phone number, the API returns valuable connections between the user and other individuals, offering insights into whether they share the same address or any other relevant detail. Additionally, the API also provides alternate locations, enhancing the verification process or collectability process with more accuracy.

V1

Returns a list of data point from a person needs to be search

post

This endpoint check person from open source data with multiple data point

body
Header parameters
TokenstringRequired

Your API_TOKEN from Authentication section

Responses
200

A JSON object from multiple sources of detected information of your request

application/json
post
/guardians/retrieve
const raw = JSON.stringify({
  "phone": "628194890045",
  "name": "nanda anzana",
  "email": "-",
  "nik": "-",
  "address": "-",
  "city": "-",
  "district": "-"
});

const requestOptions = {
  method: "POST",
  headers: Header,
  body: raw,
  redirect: "follow"
};

fetch("https://api-stg.oppna.dev/v1/guardians/retrieve", requestOptions)
  .then((response) => response.text())
  .then((result) => console.log(result))
.catch((error) => console.error(error));
{
  "data": {
    "opa": {
      "opa_id": "6776230979be1cfe283c348a31360ddce192d6b3139e50044",
      "name_similarity": 0.34352
    },
    "addresses": [
      {
        "address_id": "6776508ed1ddcbc7aa635dece71c5a1dff82a9d4a27e67921",
        "address_domicile": "apartemen menteng park  tower sapphire  unit 26dd  jl  cikini raya no 79  rt 1 rw 2",
        "province_domicile": "DKI JAKARTA",
        "city_domicile": "JAKARTA PUSAT",
        "district_domicile": "MENTENG",
        "building_name_address": "apartemen menteng park tower sapphire unit 26",
        "road_address": "cikini raya",
        "block_address": "dd",
        "number_address": 79,
        "rt_address": 1,
        "rw_address": 2,
        "remarks": null,
        "completeness_level": 100,
        "address_quality_score": 100,
        "meta_loaded_at": "2024-07-30 15:44:46.065868 UTC",
        "created_date": "2020-11-24",
        "updated_date": "2022-07-25"
      }
    ],
    "summary": [
      {
        "opa_id": "6776201a46da62135ee985edb28493f62990abd995d5f2305",
        "name": "TRIOWATI EBER GROUP",
        "connected_by": "ADDRESS",
        "id_connected": "67765828939953d90a5d15446320156d58586752614fedd79",
        "phone": "62812XXXXX305"
      },
      {
        "opa_id": "677624b7b07c8c3b44a361bd4c5982a69f562276ae6ee0588",
        "name": "YOSI ANDRIS TANTI",
        "connected_by": "EMAIL",
        "id_connected": "67763de0a4f4c5697d25ae1fc5f2058a6cab7c14f107c",
        "phone": "62813XXXXX588"
      },
      {
        "opa_id": "67762b256e536d9ff54e482eacb37decc6ac95ccdafa43104",
        "address_id": "67765e5d6e2cb9485a81cfbf81e8d0dfaaf28ab857a25an25",
        "name": "SUPRIANI",
        "phone": "62815XXXXXX104",
        "connected_by": "ADDRESS"
      }
    ],
    "email": [
      {
        "email_id": "67763de0a4f4c5697d25ae1fc5f2058a6cab7c14f107c",
        "name": "YOSI ANDRIS TANTI",
        "opa_id": "677624b7b07c8c3b44a361bd4c5982a69f562276ae6ee0588"
      }
    ],
    "address": [
      {
        "address_id": "67765e5d6e2cb9485a81cfbf81e8d0dfaaf28ab857a25an25",
        "name": "SUPRIANI",
        "opa_id": "67762b256e536d9ff54e482eacb37decc6ac95ccdafa43104"
      },
      {
        "opa_id": "6776201a46da62135ee985edb28493f62990abd995d5f2305",
        "name": "TRIOWATI EBER GROUP",
        "address_id": "67765828939953d90a5d15446320156d58586752614fedd79"
      }
    ]
  },
  "message": "SUCCESS",
  "code": "01",
  "processed_time": 1.2314
}

Last updated

Was this helpful?