Skip to main content
GET
/
v1
/
kyt
/
transfers
/
{transferId}
/
summary
KYT - Get Transfer Summary
curl --request GET \
  --url https://api-dex.chainstream.io/v1/kyt/transfers/{transferId}/summary \
  --header 'Authorization: Bearer <token>'
{
  "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.

Path Parameters

transferId
string
required

转账ID

Example:

"123e4567-e89b-12d3-a456-426614174000"

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"