Get orders

[GET] /api/v2/orders

Gets a list of orders with cursor pagination and optional filters.

Request query params type:

type QueryParams = {
    limit: number,// required
    cursor?: PaymentChannel,// optional
    userEmail?: string,// optional
    status?: OrderStatus,// optional
    fromDate?: number,// optional, unix mx
    toDate?: number,// optional, unix 
    depositCurrencyCode?: string,// optional
    depositPaymentChannel?: PaymentChannel,// optional
    depositCurrencyType?: CurrencyType,// optional
    payoutCurrencyCode?: string,// optional
    payoutPaymentChannel?: PaymentChannel,// optional
    payoutCurrencyType?: string,// optional
    depositUserWalletAddress?: string,// optional
    payoutUserWalletAddress?: string,// optional
    depositUserPhoneNumber?: string,// optional
    payoutUserPhoneNumber?: string,// optional
}

Response type:

Response example:

Last updated