Skip to main content
POST
/
api
/
v0
/
account
/
transactions
List transactions
curl --request POST \
  --url https://dev.bringin.xyz/api/v0/account/transactions \
  --header 'Content-Type: application/json' \
  --header 'api-key: <api-key>' \
  --data '
{
  "startDate": 123,
  "endDate": 123,
  "limit": "<string>",
  "offset": "<string>"
}
'
{
  "transactions": [
    {
      "orderId": "3521154c-30b4-480c-834d-38f80d507963",
      "type": "OFFRAMP_WITHOUT_FIAT_WITHDRAWAL",
      "subType": "ONCHAIN",
      "sourceAmount": "100000",
      "sourceCurrency": "USDC",
      "destinationAmount": "3816",
      "destinationCurrency": "EUR",
      "status": "SUCCESSFUL",
      "createdAt": "2024-01-18T14:02:59.709Z"
    }
  ],
  "number": 1,
  "totalCount": 4
}
Get the user’s transaction history. Requires a per-user api-key.
startDate
number
Unix timestamp in milliseconds
endDate
number
Unix timestamp in milliseconds
limit
string
Max results (stringified number)
offset
string
Pagination offset (stringified number)
All fields are optional.
{
  "transactions": [
    {
      "orderId": "3521154c-30b4-480c-834d-38f80d507963",
      "type": "OFFRAMP_WITHOUT_FIAT_WITHDRAWAL",
      "subType": "ONCHAIN",
      "sourceAmount": "100000",
      "sourceCurrency": "USDC",
      "destinationAmount": "3816",
      "destinationCurrency": "EUR",
      "status": "SUCCESSFUL",
      "createdAt": "2024-01-18T14:02:59.709Z"
    }
  ],
  "number": 1,
  "totalCount": 4
}