Get Reverse Record Info

Parameters

{
  "type": "blockchain",
  "key_info": {
    "coin_type": "", // 60: ETH, 195: TRX, 9006: BNB, 966: Matic
    "chain_id": "", // 1: ETH, 56: BSC, 137: Polygon
    "key": "" // address
  }
}

Returns

{
  "errno": 0,
  "errmsg": "",
  "data": {
    "account": ""
  }
}

Example

Requset

curl --location --request POST 'https://das-account-indexer-public.unifra.io' \
--header 'Content-Type: text/plain' \
--data-raw '{"jsonrpc": "2.0","id": 1,"method": "das_reverseRecord","params": [{"type": "blockchain","key_info":{"coin_type": "60","chain_id": "1","key": "0x9176acd39a3a9ae99dcb3922757f8af4f94cdf3c"}}]}'

Result

{
    "id": 1,
    "jsonrpc": "2.0",
    "result": {
        "errno": 0,
        "errmsg": "",
        "data": {
            "account": "justing.bit",
            "account_alias": "justing.bit"
        }
    }
}
Language
Click Try It! to start a request and see the response here!