Skip to main content
GET
/
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": "2025-06-15T10:40:00.000Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.stablepay.global/llms.txt

Use this file to discover all available pages before exploring further.

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": "2025-06-15T10:40:00.000Z"
  }
}