Documentation

Getting started

Data Enrichment API offers comprehensive insights into user profiles through demographic, affinity, and behavior attributes. This API is designed to help businesses better understand their audience by analyzing demographic,affinities/interest, and behavior attributesof their users. Whether you'reanalyzing customer segments or optimizing your offerings , the Data Enrichment API helps you connect with your audience on a deeper level.

V1

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

post

This endpoint check person parameters from internal source of Oppna data

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
/royals/enrichment
const raw = JSON.stringify({
  "name": "REZANANTHA FADIL PIETRUSCHKA",
  "phone": "6285775385767"
});

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

fetch("https://api-stg.oppna.dev/v1/royals/enrichment", requestOptions)
  .then((response) => response.text())
  .then((result) => console.log(result))
.catch((error) => console.error(error));
{
  "data": {
    "gender": "F",
    "district_domicile": "BEJI",
    "city_domicile": "DEPOK",
    "province_domicile": "JAWA BARAT",
    "is_verified": false,
    "predicted_bank": "PREDICTED BANK",
    "predicted_digital": "DIGITAL",
    "predicted_ecommerce_seller": false,
    "ever_take_loan": false,
    "digital_shopper": false,
    "engaged_shopper": false,
    "fashionista": false,
    "beauty_enthusiast": false,
    "auto_geek": false,
    "religious": false,
    "sporty": false,
    "gadget_freak": false,
    "traveler": false,
    "visual_geek": false,
    "parents": false,
    "gamer": true,
    "recently_traveled": false,
    "recently_has_child": false,
    "recently_decorate_renovate": false,
    "sexually_active": false,
    "health_conscious": false,
    "far_sighted_shopper": true,
    "alcohol_drinker": false,
    "badminton_lover": false,
    "basketball_lover": false,
    "book_lover": false,
    "gardener": false,
    "home_cooking": false,
    "musician": false,
    "pet_owner": false,
    "stationery_sorcerer": true,
    "snack_sweets_lover": false,
    "soccer_fans": false,
    "tennis_lover": false,
    "vaper": false,
    "home_organizer": true,
    "workout_warrior": false,
    "midas_investor": false,
    "cinephile": false,
    "lock_safe_devotee": false,
    "prefer_high_value_goods": false,
    "prefer_mid_to_high_value_goods": false,
    "prefer_mid_to_low_value_goods": false,
    "prefer_low_value_goods": false,
    "predicted_smartphone_owner": false,
    "predicted_luxury_phone_owner": false,
    "predicted_car_owner": false,
    "predicted_motorcycle_owner": false,
    "predicted_luxury_motorcycle_owner": true,
    "predicted_low_class_car_owner": false,
    "predicted_mid_class_car_owner": false,
    "predicted_high_class_car_owner": false,
    "predicted_smarttv_owner": false,
    "cctv_owner": true,
    "predicted_expensive_self_care_owner": false,
    "predicted_medium_self_care_owner": false,
    "predicted_high_class_computer_owner": false,
    "predicted_high_class_health_product": true,
    "predicted_high_class_household_owner": false,
    "payday_shopper": false,
    "early_month_shopper": true,
    "mid_month_shopper": true,
    "morning_shopper": false,
    "noon_shopper": true,
    "night_shopper": false,
    "midnight_shopper": false,
    "weekend_shopper": false,
    "weekday_shopper": true,
    "age": 29,
    "gen_type": "5.MILLENIALS (1981-1996)",
    "district_registered": "BEJI",
    "city_registered": "DEPOK",
    "province_registered": "JAWA BARAT",
    "occupation": "KARYAWAN SWASTA",
    "marital_sts": "KAWIN",
    "fintech_familiarity_category": "Hidden Gems",
    "customer_health_score_category": "Sick",
    "cltv_monthly_12_months": 24000000,
    "last_active_date_in_oppna_ecosystem": "2020-12-12"
  },
  "message": "SUCCESS",
  "code": "01",
  "processed_time": 1.2314
}

Last updated

Was this helpful?