GET/v1/wallet/deposits

List deposits

Paginated list of the user's crypto deposit history, newest first.

Required scope: wallet.deposit.readRate limit: 10 rps

Parameters

limitintegeroptional

Max results to return (default 50, max 100).

Code samples

curl -X GET "https://samaprime.com/api/v1/wallet/deposits" \
-H "Authorization: Bearer sk_test_..." \
-H "Content-Type: application/json"

Response

200
{
"data": [
{
"id": "dep_01J8X9K2QYABCD",
"chain": "BEP20",
"amount_usd": "50.0000",
"status": "credited",
"tx_hash": "0x4f2c...9ab1",
"confirmations": 15,
"detected_at": "2026-08-10T14:20:00Z",
"credited_at": "2026-08-10T14:24:12Z"
}
],
"meta": {
"request_id": "req_abc123",
"timestamp": "2026-08-06T12:00:00Z"
}
}