Skip to main content
GET
/
trade
/
v1
/
venues
/
deposits
List venue deposits
curl --request GET \
  --url https://api.staging.layer1.com/trade/v1/venues/deposits \
  --header 'Authorization: Bearer <token>'
{
  "totalElements": 123,
  "content": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "asset": "ETH",
      "venue": "binance",
      "status": "SIMULATED",
      "amount": 1.5,
      "blockchainDestination": {
        "address": 6.6325114945411165e+47,
        "tag": "109281",
        "alias": "eth_mainnet",
        "network": "ETH"
      },
      "fiatDestination": {
        "alias": "hsbc_eur",
        "reference": "payment123"
      },
      "venueTransferId": "DEP123456",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "blockchainMetadata": {
        "hash": "<string>"
      },
      "fiatMetadata": "<unknown>",
      "failureMessage": "Insufficient funds"
    }
  ],
  "pageable": {
    "pageNumber": 123,
    "pageSize": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://exness-preview.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Query Parameters

status
enum<string>

Filter by transfer status Transfer status indicating the current state of a deposit or withdrawal

Available options:
SIMULATED,
APPROVAL_REQUESTED,
PENDING,
SUBMITTED,
COMPLETED,
FAILED,
CANCELLED
asset
string

Filter by asset

venue
string

Filter by venue

pageNumber
integer<int32>
required

Page number to get

Required range: x >= 0
pageSize
integer<int32>
required

Maximum records to return (max 100)

Required range: 0 <= x <= 100

Response

OK

totalElements
integer<int64>

total number of items in all pages

content
object[]

list of items

pageable
object