Get API-created crypto transactions for your business. Required scope: crypto-transaction:read.

GETapi-prod.blaaiz.com/api/external/crypto/transactions

Authorization

oauth2ClientCredentials crypto-transaction:read
AuthorizationBearer <token>

Use your OAuth client credentials to obtain a short-lived Bearer token from POST /oauth/token.

In: header

Scope: crypto-transaction:read

Query Parameters

wallet_id?string
customer_id?string

Filter transactions by customer ID.

status?string

Value in

  • "processing"
  • "successful"
  • "failed"
type?string

Value in

  • "payout"
  • "swap"
direction?string

Value in

  • "in"
  • "out"
start_date?string
Formatdate
end_date?string
Formatdate
search_term?string
per_page?integer
Range1 <= value <= 100
Default10

Response Body

application/json

List crypto transactions
curl --request GET \  --url 'https://example.com/api/external/crypto/transactions'
{  "data": [    {      "id": "transaction-id",      "wallet_id": "wallet-id",      "customer_id": "customer-id",      "type": "payout",      "status": "processing",      "reference": "CRYPTO-REF",      "currency": "USDC",      "amount": "100.000000"    }  ],  "current_page": 1,  "per_page": 10,  "total": 1}