Skip to main content

How to create a manual address check

To create a manual address check you have to use POST /v1/manual-checks/check-address/ endpoint and define the following fields:

  • network
  • token_id (optional)
  • address

Request

curl -X POST "https://kyt-api.bitok.org/v1/manual-checks/check-address/"   --header "Content-Type: application/json"   --header "Accept: application/json"   --header "API-KEY-ID:{KEY_ID}"   --header "API-TIMESTAMP:{TIMESTAMP}"   --header "API-SIGNATURE:{SIGNATURE}"   --data '{
"network": "ETH",
"token_id": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"address": "0x98f79674D5F2f777d44e253BfAf905D7491E8cEF"
}'

Response

{
"id": "15b9bf78-a814-4b8e-9dbd-09f2596a6b00",
"created_at": "2024-02-29T19:40:12.287316+03:00",
"check_type": "single_address",
"check_status": "checking",
"checked_at": null,
"transfer": null,
"address": {
"network": "ETH",
"address": "0x98f79674d5f2f777d44e253bfaf905d7491e8cef"
},
"risk_level": "undefined",
"fiat_currency": "USD"
}