Skip to main content
GET
https://api.stablepay.global
/
v2
/
users
/
{userId}
/
kyc
/
profile
curl -X GET "https://api.stablepay.global/v2/users/{userId}/kyc/profile" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "success": true,
  "data": {
    "dateOfBirth": "1990-05-15",
    "nationality": "Indian",
    "addressLine1": "123 Main Street, Apartment 4B",
    "addressLine2": "Near City Mall",
    "city": "Mumbai",
    "state": "Maharashtra",
    "pincode": "400001",
    "country": "India",
    "submittedAt": "2024-01-15T10:30:00.000Z"
  }
}

Overview

Retrieve the user’s KYC profile information including nationality, address, and date of birth.

Response

success
boolean
Whether the request was successful
data
object
Profile data (null if not submitted)
curl -X GET "https://api.stablepay.global/v2/users/{userId}/kyc/profile" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "success": true,
  "data": {
    "dateOfBirth": "1990-05-15",
    "nationality": "Indian",
    "addressLine1": "123 Main Street, Apartment 4B",
    "addressLine2": "Near City Mall",
    "city": "Mumbai",
    "state": "Maharashtra",
    "pincode": "400001",
    "country": "India",
    "submittedAt": "2024-01-15T10:30:00.000Z"
  }
}