Skip to content

Get active credit token holders (Admin)

Request

Convenience endpoint: automatically resolves the tenant's active ERC20 credit token and returns paginated holders enriched with PERS wallet and optional user data.

Security
authJWT
Query
pagenumber

Page number (default: 1)

limitnumber

Items per page (default: 50)

includeArray of strings

Optional relations to embed. Use user to include full UserDTO for USER-owned wallets.

curl -i -X GET \
  'https://docs.pers.ninja/_mock/swagger/balances/tokens/credit/holders?page=0&limit=0&include=string' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Credit token holders retrieved successfully

Bodyapplication/json
dataArray of anyrequired

Array of data items

paginationobjectrequired

Pagination metadata

Example:
{ "page": 1, "limit": 50, "total": 150, "pages": 3, "hasNext": true, "hasPrev": false }
metadataobject or null

Additional metadata (e.g., enriched relations)

Example:
{ "includes": [ "sender", "recipient" ] }
Response
{ "data": [], "pagination": { "page": 1, "limit": 50, "total": 150, "pages": 3, "hasNext": true, "hasPrev": false }, "metadata": { "includes": [] } }