Skip to main content
GET
https://api.stablepay.global
/
v2
/
users
/
{userId}
/
kyc
/
declaration
curl -X GET "https://api.stablepay.global/v2/users/{userId}/kyc/declaration" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "success": true,
  "data": {
    "occupation": "salaried",
    "occupationOther": null,
    "incomeRange": "10l_to_25l",
    "isPep": false,
    "declarationAccepted": true,
    "submittedAt": "2024-01-15T10:40:00.000Z"
  }
}

Overview

Retrieve the user’s KYC declaration information including occupation, income range, and PEP status.

Response

success
boolean
Whether the request was successful
data
object
Declaration data (null if not submitted)
curl -X GET "https://api.stablepay.global/v2/users/{userId}/kyc/declaration" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "success": true,
  "data": {
    "occupation": "salaried",
    "occupationOther": null,
    "incomeRange": "10l_to_25l",
    "isPep": false,
    "declarationAccepted": true,
    "submittedAt": "2024-01-15T10:40:00.000Z"
  }
}