Skip to main content
GET
/
accounts
List all accounts
curl --request GET \
  --url https://api.venlyfinance.com/v1/accounts \
  --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
    }
  ],
  "pagination": {
    "pageNumber": 1,
    "pageSize": 20,
    "numberOfElements": 1,
    "numberOfPages": 1,
    "hasNextPage": false,
    "hasPreviousPage": false
  }
}
Returns a paginated list of accounts. Filter by status or externalId, and page with page/size (see Pagination). Each account belongs to a party and holds wallets and virtual bank accounts.

Authorizations

Query Parameters

externalId
string

Filter by external ID (exact match)

status
enum<string>

Filter by account status Status of an account

Available options:
ACTIVE,
SUSPENDED,
CLOSED
sortOn
string
default:createdAt

Field to sort by

sortOrder
enum<string>
default:ASC

Sort direction

Available options:
ASC,
DESC
page
integer<int32>
default:1

Page number (1-based indexing)

Required range: x >= 1
size
integer<int32>
default:100

Number of items per page

Required range: x >= 1

Response

List of accounts

success
boolean

Indicates whether the request was successful

result
object[]
pagination
object

Pagination metadata (top-level sibling of result)