List all active accounts belonging to your organization, including their attached funding methods. Results are ordered by creation date, newest first.
curl --request GET \
--url https://api.nxos.io/v1/accounts \
--header 'Authorization: <authorization>'{
"object": "list",
"data": [
{
"object": "account",
"accountId": "acct_a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4",
"name": "Main",
"description": null,
"isPrimary": true,
"status": "ACTIVE",
"fundingMethods": [],
"createdAt": "2025-01-15T10:30:00.000Z",
"updatedAt": "2025-01-15T10:30:00.000Z"
}
],
"hasMore": true,
"nextCursor": "<string>"
}Bearer token. Format: Bearer <api_key>
Maximum number of items to return. Defaults to 25, max 100.
Cursor for the next page of results, returned in previous responses.
The request has succeeded.
Paginated list envelope. All list endpoints return this shape.
Object type. Always list for paginated responses.
list Array of results.
Show child attributes
Whether more results are available beyond this page.
Cursor to pass as cursor query parameter for the next page. Null when there are no more results.
curl --request GET \
--url https://api.nxos.io/v1/accounts \
--header 'Authorization: <authorization>'{
"object": "list",
"data": [
{
"object": "account",
"accountId": "acct_a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4",
"name": "Main",
"description": null,
"isPrimary": true,
"status": "ACTIVE",
"fundingMethods": [],
"createdAt": "2025-01-15T10:30:00.000Z",
"updatedAt": "2025-01-15T10:30:00.000Z"
}
],
"hasMore": true,
"nextCursor": "<string>"
}