Get Basic User Info
Returns basic information of a single user
GET
https://api.authento.io/v1/userinfo/basic
Either id or address must be provided as a query parameter.
Query Parameters
id
String
user id
address
String
EVM compatible address
{
"success": true,
"result": {
"id": "khz3h1vqr0023ptxk3j8w0a78",
"type": "INDIVIDUAL",
"status": {
"basic": "VERIFIED",
"poa": "VERIFIED"
},
"basicInfo": {
"country": "AUT",
"nonUS": true,
"nonEU": false,
"eighteenPlus": true,
"pep": null
},
"addresses": [
{
"address": "0x4D1a9E606516a9588fe8B5753A6b69D53cE8E1AA",
"riskLevel": "LOW",
"riskTags": [],
"timeScanned": 1688552661.845,
"action": "WHITELISTED"
}
],
"questionnaires": [
{
"id": "clk3cggqs0011o6s2qnt3daob",
"completed": true
}
],
"timeUpdated": 1687938817.611
}
}
Response values
type
INDIVIDUAL
-
CORPORATE
-
status.basic/poa
UNVERIFIED
User has yet to submit all info/documents needed for verification.
PROCESSING
All info/documents required have been collected. Verification is now being processed.
INFO_REQUIRED
Additional info/documents from user needed to resume verification.
VERIFIED
-
REJECTED
-
basicInfo.country
country codes in the ISO 3166-1 alpha-3 standard (see here).
addresses
LOW
-
MODERATE
-
HIGH
-
SEVERE
-
MALICIOUS_ADDR
-
SUSPECTED_MALICIOUS_ADDR
-
HIGH_RISK_ADDR
-
MEDIUM_RISK_ADDR
-
MIXER
-
RISK_EXCHANGE
-
GAMBLING
-
INVOLVED_THEFT_ACTIVITY
-
INVOLVED_RANSOM_ACTIVITY
-
INVOLVED_PHISHING_ACTIVITY
-
INTERACT_MALICIOUS_ADDR
-
INTERACT_SUSPECTED_MALICIOUS_ADDR
-
INTERACT_HIGH_RISK_ADDR
-
INTERACT_MEDIUM_RISK_ADDR
-
WHITELISTED
-
BLACKLISTED
-
Last updated