Skip to main content
GET
/
accounts
/
{accountId}
Get account details
curl --request GET \
  --url https://api.venlyfinance.com/v1/accounts/{accountId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "result": {
    "id": "b2a1f0e9-8c7d-4e3a-9f21-0a1b2c3d4e5f",
    "externalId": "user-12345",
    "name": "Jane Doe — Main",
    "kycStatus": "VERIFIED",
    "status": "ACTIVE",
    "createdAt": "2026-01-15T09:30:00",
    "version": 0
  }
}
Returns the account’s status, verification status (kycStatus), and version.

Authorizations

Path Parameters

accountId
string<uuid>
required

Unique account identifier

Response

Account details

success
boolean

Indicates whether the request was successful

result
object