Skip to main content
GET
/
v1
/
withdrawals
cURL
curl --request GET \
  --url https://api.sandbox.forte.cc/v1/withdrawals \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "019ad1da-3206-73f2-a568-2b725c0fb6f8",
    "network": "ethereum-sepolia",
    "currency": "AUDF",
    "amount": "1",
    "withdrawalAccount": {
      "id": "a47e536d-ae57-410d-b035-73d1ecf8233b",
      "currency": "AUDF",
      "decimals": 6,
      "network": "ethereum-sepolia",
      "details": {
        "beneficiary": {
          "address": "0xE0B2026E3DB1606ef0Beb764cCdf7b3CEE30Db4A"
        }
      },
      "label": "Numerium3"
    },
    "details": {
      "hash": "0xf224039557c0b5a10df6b5345e2b7d5eb2d625142022fa974870f96212f82c04",
      "source": "0xE9127b0455ee3ed5050e28488B26d187612A56A0"
    },
    "createdAt": "2025-11-29T23:02:09.158Z",
    "processedAt": "2025-11-29T23:03:49.553Z"
  }
]

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 withdrawals

id
string<uuid>

Withdrawal identifier.

Example:

"b56d7c9b-e794-4581-a931-c529007d8f50"

label
string

Human-readable withdrawal label.

Example:

"Wallet [polygon]"

network
string

Network of the withdrawal.

Example:

"polygon"

currency
string

Currency of the withdrawal.

Example:

"AUDF"

amount
string

Amount of the withdrawal.

Example:

"10"

withdrawalAccount
object

A withdrawal account. The exact shape may vary depending on the network.

createdAt
string<date-time>

Creation timestamp (ISO 8601).

Example:

"2024-06-23T21:10:22.828Z"

processedAt
string<date-time>

Processed timestamp (ISO 8601).

Example:

"2024-06-23T21:10:22.828Z"

details
object

Network-specific withdrawal details.

Example:
{}