Skip to main content
GET
/
trade
/
v1
/
venues
/
deposits
/
{depositId}
Get venue deposit
curl --request GET \
  --url https://api.staging.layer1.com/trade/v1/venues/deposits/{depositId} \
  --header 'Authorization: Bearer <token>'
{
  "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"
}

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.

Path Parameters

depositId
string<uuid>
required

Unique identifier of the deposit to retrieve

Response

OK

id
string<uuid>

Unique identifier of the deposit

asset
string

The asset being deposited

Example:

"ETH"

venue
string

The venue where the deposit was made

Example:

"binance"

status
enum<string>

Current status of the deposit

Available options:
SIMULATED,
APPROVAL_REQUESTED,
PENDING,
SUBMITTED,
COMPLETED,
FAILED,
CANCELLED
amount
number

Amount of the deposit

Example:

1.5

blockchainDestination
object

Blockchain destination details for the deposit

fiatDestination
object

Fiat destination details for the deposit

venueTransferId
string

Unique identifier of the deposit at the venue

Example:

"DEP123456"

createdAt
string<date-time>

Timestamp when the deposit was created

updatedAt
string<date-time>

Timestamp when the deposit was last updated

blockchainMetadata
object

Additional blockchain-related metadata for the deposit

fiatMetadata
any

Additional fiat-related metadata for the deposit

failureMessage
string

Error message if the deposit failed

Example:

"Insufficient funds"