GetWhitelistInfo
API
Property
Value
API
/v2/whitelist_info/{address}
Title
GetWhitelistInfo
Description
Retrieve whitelist information for a wallet address. The information needs to be passed when invoking the whitelist verification method of the contract.
Method
GET
Request Parameters
Name
Type
Required
Description
address
address
YES
An EVM-compatible address
Parameter Content Type
application/json
Request and Response Example
Request
cURL Code
curl -X 'GET' \
'https://api.tako.so/v2/whitelist_info/0x0233eA33f8e68Cf7B631AA6dBb81df0058DB5783' \
-H 'accept: application/json'
Request URL
https://api.tako.so/v2/whitelist_info/0x0233eA33f8e68Cf7B631AA6dBb81df0058DB5783
Response
{
"status": "success",
"data": {
"address": "0x0233eA33f8e68Cf7B631AA6dBb81df0058DB5783",
"merkleRoot": "0xb6cab120cfe96adedc28efe499f23e2289121e9558ea7755ddbc409768ff1ad4"
}
}
Last updated