Skip to main content
GET
/
accounts
/
{account_id}
/
deposits
List deposits for an account
curl --request GET \
  --url https://service.bluumfinance.com/v1/accounts/{account_id}/deposits \
  --header 'Authorization: Basic <encoded-value>'
{
  "deposits": [
    {
      "deposit_id": "dep_a1b2c3d4e5f6g7h8",
      "account_id": "3d0b0e65-35d3-4dcd-8df7-10286ebb4b4b",
      "status": "pending",
      "amount": "1000.00",
      "currency": "USD"
    }
  ],
  "total": 1
}

Authorizations

Authorization
string
header
required

HTTP Basic Authentication using the API Key as username and API Secret as password.

Path Parameters

account_id
string<uuid>
required

Response

List of deposits

deposits
object[]
total
integer
Example:

10