跳转到主要内容
POST
/
v2
/
kyt
/
withdrawal
KYT - 注册提款
curl --request POST \
  --url https://api.dex.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.008307",
  "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.008307",
  "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.008307"

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.008307"

usdAmount
string
必填

USD 金额

示例:

"1000"

assetId
string | null

资产 ID

示例:

null

memo
string | null

备注信息

示例:

null