# Sign the request first — see Authentication for x-timestamp, x-nonce and x-signature
curl "https://api.sbx.hopnow.io/va/v1/accounts/acct_l2qk703k8k0b3snmtscacozu/deposits/api_14tch14q4n4nuqnev5e4h3si" \
-H "x-api-key: $API_KEY" \
-H "x-timestamp: $TIMESTAMP" \
-H "x-nonce: $NONCE" \
-H "x-signature: $SIGNATURE"
{
"object": "deposit",
"id": "api_14tch14q4n4nuqnev5e4h3si",
"account_id": "acct_l2qk703k8k0b3snmtscacozu",
"virtual_account_id": "va_hx8p1s44n47agkbev7umkkyu",
"amount": "2500.00",
"currency": "USD",
"status": "completed",
"bank_reference": "BREF-20260530-88421",
"sender_name": "Acme Trading Ltd",
"sender_reference": "INV-1042",
"reason": null,
"value_date": "2026-05-30",
"completed_at": "2026-05-30T09:16:41Z",
"failed_at": null,
"failed_reason": null,
"created": "2026-05-30T09:14:02Z",
"updated": "2026-05-30T09:16:41Z"
}
Deposits
Get Deposit
Fetch a single deposit by id, including sender details, status, and lifecycle timestamps
GET
/
va
/
v1
/
accounts
/
{account_id}
/
deposits
/
{deposit_id}
# Sign the request first — see Authentication for x-timestamp, x-nonce and x-signature
curl "https://api.sbx.hopnow.io/va/v1/accounts/acct_l2qk703k8k0b3snmtscacozu/deposits/api_14tch14q4n4nuqnev5e4h3si" \
-H "x-api-key: $API_KEY" \
-H "x-timestamp: $TIMESTAMP" \
-H "x-nonce: $NONCE" \
-H "x-signature: $SIGNATURE"
{
"object": "deposit",
"id": "api_14tch14q4n4nuqnev5e4h3si",
"account_id": "acct_l2qk703k8k0b3snmtscacozu",
"virtual_account_id": "va_hx8p1s44n47agkbev7umkkyu",
"amount": "2500.00",
"currency": "USD",
"status": "completed",
"bank_reference": "BREF-20260530-88421",
"sender_name": "Acme Trading Ltd",
"sender_reference": "INV-1042",
"reason": null,
"value_date": "2026-05-30",
"completed_at": "2026-05-30T09:16:41Z",
"failed_at": null,
"failed_reason": null,
"created": "2026-05-30T09:14:02Z",
"updated": "2026-05-30T09:16:41Z"
}
Fetches a single deposit by id, including sender details, status, and lifecycle timestamps. There is no request body.
Only virtual-account-routed deposits are exposed on this API: credits received through other routing (for example memo- or reference-routed house-account credits) are excluded from List Deposits and return
404 from Get Deposit.
A deposit that is reversed after settlement is debited back from the virtual account; the deposit’s status becomes
reversed.Path Parameters
string
required
Id of the owning account (e.g.
acct_...).string
required
Deposit id (e.g.
api_14tch14q4n4nuqnev5e4h3si).Response
Returns200 with a deposit object.
string
required
Always
deposit.string
required
Deposit id (
api_…).string
required
Id of the account that received the funds (
acct_…).string
required
Id of the virtual account credited by this deposit (
va_…).decimal
required
Deposit amount, quantized to the currency’s precision.
Currency
required
ISO 4217 currency code.
DepositStatus
required
pending | completed | failed | reversed.string | null
Bank-provided reference for the incoming payment.
string | null
Name of the sending party, as reported by the bank.
string | null
Payment reference entered by the sender (e.g. an invoice number).
string | null
Annotation recorded with the deposit (e.g. for incoming account credits).
date | null
Bank value date of the credit.
datetime | null
When the deposit settled and the virtual account was credited.
datetime | null
When the deposit failed.
string | null
Reason the deposit failed.
datetime
required
ISO 8601 creation timestamp.
datetime | null
ISO 8601 last-update timestamp.
# Sign the request first — see Authentication for x-timestamp, x-nonce and x-signature
curl "https://api.sbx.hopnow.io/va/v1/accounts/acct_l2qk703k8k0b3snmtscacozu/deposits/api_14tch14q4n4nuqnev5e4h3si" \
-H "x-api-key: $API_KEY" \
-H "x-timestamp: $TIMESTAMP" \
-H "x-nonce: $NONCE" \
-H "x-signature: $SIGNATURE"
{
"object": "deposit",
"id": "api_14tch14q4n4nuqnev5e4h3si",
"account_id": "acct_l2qk703k8k0b3snmtscacozu",
"virtual_account_id": "va_hx8p1s44n47agkbev7umkkyu",
"amount": "2500.00",
"currency": "USD",
"status": "completed",
"bank_reference": "BREF-20260530-88421",
"sender_name": "Acme Trading Ltd",
"sender_reference": "INV-1042",
"reason": null,
"value_date": "2026-05-30",
"completed_at": "2026-05-30T09:16:41Z",
"failed_at": null,
"failed_reason": null,
"created": "2026-05-30T09:14:02Z",
"updated": "2026-05-30T09:16:41Z"
}