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
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
400
You have invalid request
application/json
500
Error from our server
application/json
post
/marlinsconst 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?