Documentation

Getting started

The Address Verification API enables businesses conducting online address survey to validate user-provided information and enhance it with detailed attributes for accurate verifications. By inputting a phone number and address, businesses can receive comprehensive verifications address details, along with confirmation of user presence at the specified address based on Oppna data ecosystem.

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
post
/marlins
const raw = JSON.stringify({
  {
    "phone": "6285276529401",
    "address": "stargio residence  jl  bangka i a, mampang prapatan, jakarta selatan",
    "poi": "alfamart",
    "radius": 2000
}
});

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

fetch("https://api-stg.oppna.dev/v1/marlins", requestOptions)
  .then((response) => response.text())
  .then((result) => console.log(result))
.catch((error) => console.error(error));
{
  "data": {
    "lon": 106.8201827,
    "lat": -6.241647899999999,
    "building_name": "",
    "road_name": "bangka i a",
    "number": "",
    "block": "",
    "rt": "",
    "rw": "",
    "remark": "",
    "postal_code": 12720,
    "district": "KECAMATAN MAMPANG PRAPATAN",
    "city": "KOTA JAKARTA SELATAN",
    "province": "DAERAH KHUSUS IBUKOTA JAKARTA",
    "confidence_level": 90,
    "category": "HOUSE",
    "lanes": 2,
    "width": 4,
    "is_motorcycle": "yes",
    "surface": "asphalt",
    "num_of_poi": 19,
    "min_distance_to_poi": 236,
    "max_distance_to_poi": 1695,
    "validation_score": 74,
    "validation_remark": "High"
  },
  "message": "SUCCESS",
  "code": "01",
  "processed_time": 1.2314
}

Last updated

Was this helpful?