Rest API

Convert Name to Address

// Replace "123.zkSync" with your name
const name = "123.zkSync";
const response = await fetch(`https://zns.is/api?method=getAddress&name=${name}`);
const { address } = await response.json();
//0x810791a3f967EB66B75aEb62251795d181bce680

Convert Address to Name(soon)

// Replace "address" with the address you want to lookup.
const address = "0x1234...abcdef";
const response = await fetch(`https://zns.is/api?method=getName&address=${address}`);
const { name } = await response.json();

Last updated