Inds search
Last updated
Was this helpful?
Last updated
Was this helpful?
Example Request
{
"method": "inds_search",
"id": 1,
"jsonrpc": "2.0",
"params": [
"0x4273173187f1108007b1C1ABE5301eFa03f7fc8A", // keyword
"" // chain
]
}
Example Response
{
"jsonrpc": "2.0",
"result": {
"type": "Address",
"data": [
{
"chain": "avalanche",
"address": "0x4273173187f1108007b1C1ABE5301eFa03f7fc8A",
"balance": "2613"
},
{
"chain": "bsc",
"address": "0x4273173187f1108007b1C1ABE5301eFa03f7fc8A",
"balance": "1140"
}
]
},
"id": 1
}
Curl Example
curl --location 'https://api.indexs.io/v2/rpc/inds_search' \
--header 'Content-Type: application/json' \
--data '{
"method": "inds_search",
"id": 1,
"jsonrpc": "2.0",
"params": [
"0x4273173187f1108007b1C1ABE5301eFa03f7fc8A",
""
]
}'