GET
/v1/deposits/:idRetrieve a deposit
Returns a single Deposit object by ID.
Parameters
Returns
The Deposit object.
Errors
| Status | Code | Description |
|---|---|---|
| 404 | not_found | No deposit with that ID exists on this account. |
| 401 | authentication_error | Missing or invalid API key. |
Retrieve a deposit
curl https://api.aeses.io/v1/deposits/dep_01HXYZ7M2P5RT4VG3K8AQWE9FN \
-H "x-api-key: sk_live_..."Response
{
"id": "dep_01HXYZ7M2P5RT4VG3K8AQWE9FN",
"object": "deposit",
"status": "completed",
"asset": "USDC",
"chain": "ethereum",
"deposit_address": "0x8f3a9c2bF7e1A4d62D8b9fF6E3c5a7E1d2B4c8A9",
"received_amount": "99.50",
"tx_hash": "0xabc123def456...",
"confirmations": 12,
"created_at": 1731598200
}