快速开始
接口地址
演示的APIKey
查询
curl --location 'https://api.relationlabs.ai/api/v1/mutualFriend?address=0x0001%2C0x000002&limit=10' \
--header 'ApiKey: <ApiKey>' const axios = require('axios');
let config = {
method: 'get',
maxBodyLength: Infinity,
url: 'https://api.relationlabs.ai/api/v1/mutualFriend?address=0x0001%2C0x000002&limit=10',
headers: {
'ApiKey': '<ApiKey>'
}
};
axios.request(config)
.then((response) => {
console.log(JSON.stringify(response.data));
})
.catch((error) => {
console.log(error);
});
Last updated