Skip to main content
PUT
/
api
/
v4
/
kyt
/
checks
/
address
Initiate an address check
curl --request PUT \
  --url https://api.example.com/api/v4/kyt/checks/address \
  --header 'Content-Type: application/json' \
  --header 'ds-api-token: <api-key>' \
  --data '
{
  "address": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
  "blockchain": "eth",
  "directs": false,
  "risk_profile_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "token": ""
}
'
{
  "message": "<string>"
}

Authorizations

ds-api-token
string
header
required

API token passed in the request header.

Body

Request body for kyt.InitAddressCheckRequest

InitAddressCheckRequest schema

address
string
required
Pattern: ^(0x[0-9a-fA-F]{40}|T[1-9A-HJ-NP-Za-km-z]{33}|[13][a-km-zA-HJ-NP-Z1-9]{25,34}|bc1[02-9ac-hj-np-z]{7,76}|BC1[02-9AC-HJ-NP-Z]{7,76})$
Example:

"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"

blockchain
enum<string>
Available options:
btc,
eth,
trx
Example:

"eth"

directs
boolean
Example:

false

risk_profile_id
string<uuid> | null
token
enum<string> | null
Available options:
,
USDC,
USDT
Example:

""

Response

Created