Skip to main content
GET
/
v1
/
kyt
/
withdrawal
/
{withdrawalId}
/
summary
KYT - Get Withdrawal Summary
curl --request GET \
  --url https://api-dex.chainstream.io/v1/kyt/withdrawal/{withdrawalId}/summary \
  --header 'Authorization: Bearer <token>'
{
  "asset": "BTC",
  "assetId": null,
  "network": "Bitcoin",
  "address": "1EM4e8eu2S2RQrbS8C6aYnunWpkAwQ8GtG",
  "memo": null,
  "attemptIdentifier": "attempt1",
  "assetAmount": 5,
  "externalId": "9855b826-2bad-31f2-8a89-96f164293a83",
  "usdAmount": 1000,
  "updatedAt": "2020-12-09T17:25:40.008307"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

withdrawalId
string
required

Withdrawal ID

Example:

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

Response

200 - application/json
asset
string
required

Asset type

Example:

"BTC"

assetId
string | null
required

Asset ID

Example:

null

network
string
required

Blockchain network

Example:

"Bitcoin"

address
string
required

Address

Example:

"1EM4e8eu2S2RQrbS8C6aYnunWpkAwQ8GtG"

memo
string | null
required

Memo information

Example:

null

attemptIdentifier
string
required

Attempt identifier

Example:

"attempt1"

assetAmount
number
required

Asset amount

Example:

5

externalId
string
required

External ID (UUID)

Example:

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

usdAmount
number
required

USD amount

Example:

1000

updatedAt
string
required

Updated timestamp

Example:

"2020-12-09T17:25:40.008307"