Authento API
  • Welcome to Authento
  • Integration Guidance
    • Introduction
    • Address-Based Verification
      • Off-Chain Access Control
      • On-Chain Access Control
        • Digital Signature Verification
        • Merkel Proof Verification
    • Account-Based Verification
    • Webhooks
  • API Reference
    • General Information
    • Endpoints
      • Get Basic User Info
      • Get Full User Info
  • Authento-react
    • Getting Started
    • useSignature
    • useStatus
    • useTokenVerifyPopup
    • useVerifyPopup
Powered by GitBook
On this page
  • Returns basic information of a single user
  • Response values
  1. API Reference
  2. Endpoints

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

Name
Type
Description

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

Value
Description

INDIVIDUAL

-

CORPORATE

-

status.basic/poa

Value
Description

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

addresses

riskLevel
Description

LOW

-

MODERATE

-

HIGH

-

SEVERE

-

riskTag
Description

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

-

action
Description

WHITELISTED

-

BLACKLISTED

-

PreviousEndpointsNextGet Full User Info

Last updated 1 year ago

country codes in the ISO 3166-1 alpha-3 standard (see ).

here