Skip to main content
GET
/
v1
/
deposits
cURL
curl --request GET \
  --url https://api.sandbox.forte.cc/v1/deposits \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "019aaff0-1c20-7661-b79c-84b9f0945901",
    "network": "ethereum",
    "currency": "USDC",
    "amount": "10",
    "createdAt": "2025-11-23T08:59:00.000Z",
    "details": {
      "address": "0xe23037307bFE227eee179a2aa2951d018a296AB7",
      "hash": "0x7a7531a9bec985af69135fac4e833899d57713156b1457ee0cc448f4112f84b7"
    }
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

List of deposits

id
string<uuid>

Deposit identifier.

Example:

"019aaff0-1c20-7661-b79c-84b9f0945901"

network
string

Network of the deposits.

Example:

"ethereum"

currency
string

Currency of the deposit.

Example:

"USDC"

amount
string

Amount of the deposit.

Example:

"10"

createdAt
string<date-time>

Creation timestamp (ISO 8601).

Example:

"2025-11-20T06:08:34.925Z"

details
object

Network-specific deposit details.