List all crypto transfers per user

This endpoint returns a paginated list of crypto transfers, deposits & withdrawals for a specified user, with customizable page length through query parameters.

SecuritybearerAuth
Request
query Parameters
id
string <uuid>

Filter transactions by ID

Example: id=e69f4b1c-e3d7-4e5f-8561-4a6c09441097
asset_id
string <uuid>

The asset_id that needs to be filtered

Example: asset_id=1ed83487-f684-62a2-a155-fe633f0db292
coin_network_id
string <uuid>

Filter transactions by coin_network_id

Example: coin_network_id=d969468d-2be6-4522-977e-ea4d92c45e86
status
string

Filter transactions by status

Enum: "pending" "processing" "finished" "canceled"
Example: status=processing
transaction_type
string

Filter transactions by type

Enum: "deposit" "withdrawal"
Example: transaction_type=deposit
date_start
string

Filter transactions by created start date

Example: date_start=2023-12-20
date_end
string

Filter transactions by created end date

Example: date_end=2023-12-20
size
integer [ 1 .. 100 ]

Number of elements to be displayed on a page

Example: size=10
after_id
string <uuid>

A cursor for use in pagination. after_id is an Transaction ID that defines your place in the list.

Example: after_id=1ed804ad-41e9-6fc2-bf32-1e7e399643fb
header Parameters
bp-user-id
required
string <uuid>
Example: 12312312-2be6-4522-977e-ea4d92c45e86
Responses
200

Success Response

401

Unauthorized

403

Forbidden

422

Validation Error

500

Internal Error

503

Service unavailable

get/v1/crypto-transfers/transactions
Request samples
Response samples
application/json
{
  • "data": [
    ],
  • "meta": {
    }
}