跳轉到主要內容
POST
/
v2
/
kyt
/
withdrawal
KYT - 註冊提款
curl --request POST \
  --url https://api.chainstream.io/v2/kyt/withdrawal \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "address": "D1Mc6j9xQWgR1o1Z7yU5nVVXFQiAYx7FG9AW1aVfwrUM",
  "asset": "SOL",
  "assetAmount": "5",
  "attemptTimestamp": "2026-01-04T17:25:40.008Z",
  "network": "Solana",
  "assetDenomination": "USD",
  "assetId": null,
  "assetPrice": "1000",
  "memo": null
}
'
{
  "address": "1EM4e8eu2S2RQrbS8C6aYnunWpkAwQ8GtG",
  "asset": "BTC",
  "assetAmount": "5",
  "attemptIdentifier": "attempt1",
  "externalId": "9855b826-2bad-31f2-8a89-96f164293a83",
  "network": "Bitcoin",
  "updatedAt": "2020-12-09T17:25:40.008Z",
  "usdAmount": "1000",
  "assetId": null,
  "memo": null
}

授權

Authorization
string
header
必填

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

主體

application/json
address
string
必填

提款地址

範例:

"D1Mc6j9xQWgR1o1Z7yU5nVVXFQiAYx7FG9AW1aVfwrUM"

asset
string
必填

資產類型

範例:

"SOL"

assetAmount
string
必填

資產金額

範例:

"5"

attemptTimestamp
string
必填

嘗試時間戳

範例:

"2026-01-04T17:25:40.008Z"

network
enum<string>
必填

區塊鏈網路

可用選項:
Solana,
bitcoin,
ethereum
assetDenomination
string | null

資產計價單位(如 USD)

範例:

"USD"

assetId
string | null

資產 ID(可選)

範例:

null

assetPrice
string | null

資產價格

範例:

"1000"

memo
string | null

備註資訊(可選)

範例:

null

回應

200 - application/json
address
string
必填

地址

範例:

"1EM4e8eu2S2RQrbS8C6aYnunWpkAwQ8GtG"

asset
string
必填

資產類型

範例:

"BTC"

assetAmount
string
必填

資產金額

範例:

"5"

attemptIdentifier
string
必填

嘗試標識

範例:

"attempt1"

externalId
string
必填

外部 ID(UUID)

範例:

"9855b826-2bad-31f2-8a89-96f164293a83"

network
string
必填

區塊鏈網路

範例:

"Bitcoin"

updatedAt
string
必填

更新時間戳

範例:

"2020-12-09T17:25:40.008Z"

usdAmount
string
必填

USD 金額

範例:

"1000"

assetId
string | null

資產 ID

範例:

null

memo
string | null

備註資訊

範例:

null