Skip to main content

Deposit

⚠️ This endpoint is not yet available.

GET /wallet/deposit

REQUIRE SIGN : Yes

This endpoint fetch the deposit address of the asset passed.

ExchangeAvailable
Binance Spot
Kraken Spot
Gate.IO Spot

Parameters

NameTypeMandatoryDescription
assetStringYESAsset to fetch the deposit address. ex : "BTC"
networkStringYESNetwork to fetch the deposit address. ex : "BTC"
amountFloat64NoAmount you want to withdraw

Request Example

curl -X GET 'https://api.exayn.com/v1/wallet/deposit?asset=ETH&network=ETH&signature=xxx' \
-H 'X-API-KEY: <PLACE YOUR PUBLIC KEY>' \
-H 'X-API-EXCHANGE-KEY: <PLACE YOUR EXCHANGE API KEY NAME>' \
-H 'Content-Type: application/json'

Response Example

{
"asset": "ETH",
"address": "0x000000",
"network": "ETH",
"tag": "memo" // Nullable (Only for networks that support it)
}