Skip to main content
POST
/
v1
/
kyt
/
transfer
KYT - Register Transfer
curl --request POST \
  --url https://api-dex.chainstream.io/v1/kyt/transfer \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "network": "Solana",
  "asset": "SOL",
  "transferReference": "39z5QAprVrzaFzfHu1JHPgBf9dSqYdNYhH31d3PEd4hWiWL1LML7qCct5MHGxaRAgjjj1nC3XUyLwtzGQmYqUk4y:7xfh4GGMbM3bjpWsTsmBTCfSyuvXFuqnC89fShAqk5Nj",
  "direction": "sent"
}
'
{
  "updatedAt": "2022-03-16T16:17:19.613215",
  "asset": "BTC",
  "assetId": null,
  "network": "BITCOIN",
  "transferReference": "9f318afbad2a183f97750bc51a75b582ad8f9e9cbfb50401148857ca27cde10c:17A16QmavnUfCW11DAApiJxp7ARnxN5pGX",
  "memo": null,
  "tx": "9f318afbad2a183f97750bc51a75b582ad8f9e9cbfb50401148857ca27cde10c",
  "idx": 2,
  "usdAmount": 722091.75,
  "assetAmount": 11.35113454,
  "timestamp": "2021-11-16T18:33:33.000+00:00",
  "outputAddress": "17A16QmavnUfCW11DAApiJxp7ARnxN5pGX",
  "externalId": "393905a7-bb96-394b-9e20-3645298c1079"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
network
enum<string>
required

转账网络

Available options:
bitcoin,
ethereum,
Solana
Example:

"Solana"

asset
string
required

资产类型

Example:

"SOL"

transferReference
string
required

转账哈希/交易ID

Example:

"39z5QAprVrzaFzfHu1JHPgBf9dSqYdNYhH31d3PEd4hWiWL1LML7qCct5MHGxaRAgjjj1nC3XUyLwtzGQmYqUk4y:7xfh4GGMbM3bjpWsTsmBTCfSyuvXFuqnC89fShAqk5Nj"

direction
enum<string>
required

转账方向

Available options:
sent,
received
Example:

"sent"

Response

200 - application/json
updatedAt
string | null
required

更新时间

Example:

"2022-03-16T16:17:19.613215"

asset
string
required

资产类型

Example:

"BTC"

assetId
string | null
required

资产ID

Example:

null

network
string
required

区块链网络

Example:

"BITCOIN"

transferReference
string
required

转账引用(交易哈希和地址)

Example:

"9f318afbad2a183f97750bc51a75b582ad8f9e9cbfb50401148857ca27cde10c:17A16QmavnUfCW11DAApiJxp7ARnxN5pGX"

memo
string | null
required

备注信息

Example:

null

tx
string | null
required

交易哈希

Example:

"9f318afbad2a183f97750bc51a75b582ad8f9e9cbfb50401148857ca27cde10c"

idx
number | null
required

索引

Example:

2

usdAmount
number | null
required

USD金额

Example:

722091.75

assetAmount
number | null
required

资产金额

Example:

11.35113454

timestamp
string | null
required

时间戳

Example:

"2021-11-16T18:33:33.000+00:00"

outputAddress
string | null
required

输出地址

Example:

"17A16QmavnUfCW11DAApiJxp7ARnxN5pGX"

externalId
string
required

外部ID(UUID)

Example:

"393905a7-bb96-394b-9e20-3645298c1079"