Retrieve paginated list of KYT withdrawal records for the organization
cURL
curl --request GET \ --url https://api-dex.chainstream.io/v1/kyt/withdrawals \ --header 'Authorization: Bearer <token>'
{ "total": 123, "page": 123, "pageSize": 123, "totalPages": 123, "data": [ { "id": 123, "orgId": "<string>", "address": "<string>", "externalId": "<string>", "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z" } ] }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Page number (starting from 1)
x >= 1
Number of items per page
1 <= x <= 100
Total number of items
Current page number
Total number of pages
Withdrawal record list
Show child attributes
Was this page helpful?