跳轉到主要內容
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",
  "assetDenomination": "USD",
  "assetId": null,
  "assetPrice": "1000",
  "memo": null
}
'
import requests

url = "https://api.chainstream.io/v2/kyt/withdrawal"

payload = {
"address": "D1Mc6j9xQWgR1o1Z7yU5nVVXFQiAYx7FG9AW1aVfwrUM",
"asset": "SOL",
"assetAmount": "5",
"attemptTimestamp": "2026-01-04T17:25:40.008Z",
"assetDenomination": "USD",
"assetId": None,
"assetPrice": "1000",
"memo": None
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
address: 'D1Mc6j9xQWgR1o1Z7yU5nVVXFQiAYx7FG9AW1aVfwrUM',
asset: 'SOL',
assetAmount: '5',
attemptTimestamp: '2026-01-04T17:25:40.008Z',
assetDenomination: 'USD',
assetId: null,
assetPrice: '1000',
memo: null
})
};

fetch('https://api.chainstream.io/v2/kyt/withdrawal', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.chainstream.io/v2/kyt/withdrawal",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'address' => 'D1Mc6j9xQWgR1o1Z7yU5nVVXFQiAYx7FG9AW1aVfwrUM',
'asset' => 'SOL',
'assetAmount' => '5',
'attemptTimestamp' => '2026-01-04T17:25:40.008Z',
'assetDenomination' => 'USD',
'assetId' => null,
'assetPrice' => '1000',
'memo' => null
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"strings"
"net/http"
"io"
)

func main() {

url := "https://api.chainstream.io/v2/kyt/withdrawal"

payload := strings.NewReader("{\n \"address\": \"D1Mc6j9xQWgR1o1Z7yU5nVVXFQiAYx7FG9AW1aVfwrUM\",\n \"asset\": \"SOL\",\n \"assetAmount\": \"5\",\n \"attemptTimestamp\": \"2026-01-04T17:25:40.008Z\",\n \"assetDenomination\": \"USD\",\n \"assetId\": null,\n \"assetPrice\": \"1000\",\n \"memo\": null\n}")

req, _ := http.NewRequest("POST", url, payload)

req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.post("https://api.chainstream.io/v2/kyt/withdrawal")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"address\": \"D1Mc6j9xQWgR1o1Z7yU5nVVXFQiAYx7FG9AW1aVfwrUM\",\n \"asset\": \"SOL\",\n \"assetAmount\": \"5\",\n \"attemptTimestamp\": \"2026-01-04T17:25:40.008Z\",\n \"assetDenomination\": \"USD\",\n \"assetId\": null,\n \"assetPrice\": \"1000\",\n \"memo\": null\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.chainstream.io/v2/kyt/withdrawal")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"address\": \"D1Mc6j9xQWgR1o1Z7yU5nVVXFQiAYx7FG9AW1aVfwrUM\",\n \"asset\": \"SOL\",\n \"assetAmount\": \"5\",\n \"attemptTimestamp\": \"2026-01-04T17:25:40.008Z\",\n \"assetDenomination\": \"USD\",\n \"assetId\": null,\n \"assetPrice\": \"1000\",\n \"memo\": null\n}"

response = http.request(request)
puts response.read_body
{
  "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