GET
/
wallets
/
{bridgeWalletID}
/
history
Get transaction history for a Bridge Wallet
curl --request GET \
  --url https://api.bridge.xyz/v0/wallets/{bridgeWalletID}/history \
  --header 'Api-Key: <api-key>'
{
"count": 123,
"data": [
{
"amount": "<string>",
"developer_fee": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"customer_id": "<string>",
"source": {
"payment_rail": "ach",
"currency": "usdb"
},
"destination": {
"payment_rail": "ach",
"currency": "usdb"
}
}
]
}

Authorizations

Api-Key
string
header
required

Path Parameters

bridgeWalletID
string
required

A UUID that uniquely identifies a resource

Required string length: 1 - 42

Query Parameters

limit
integer

The number of items to return (default of 10, max of 100)

updated_after_ms
integer

This is a unix timestamp in milliseconds. If this is specified, objects updated AFTER the specified timestamp will be returned

updated_before_ms
integer

This is a unix timestamp in milliseconds. If this is specified, objects updated BEFORE the specified timestamp will be returned

Response

200
application/json

List of transactions for this Bridge Wallet

The response is of type object.