🚀 VaultsPay API v1 is live. See what's new →
UsersRetrieve User

Retrieve User

Fetch a single user by ID.

GET/v1/users/{id}

Path parameters

FieldTypeDescription
idrequiredstringUnique identifier of the user, e.g. `usr_01HX7...`

Request

curl https://api.vaultspay.ae/v1/users/usr_01HX71YM6FJ3A8W7T5K6NRB2DN \
  -H "Authorization: Bearer sk_test_yourApiKeyHere"

Response

200 OK
{
  "id": "usr_01HX71YM6FJ3A8W7T5K6NRB2DN",
  "object": "user",
  "email": "ali@example.com",
  "first_name": "Ali",
  "last_name": "Hassan",
  "kyc": { "status": "approved", "level": "full" },
  "status": "active",
  "created_at": "2026-04-19T12:04:00Z"
}

Errors

HTTPCodeDescription
404not_foundNo user with that ID under your account.