[
{
"value": "35000000000000000",
"firebase_id": "ITb4zPxr5mlwvW1YVVYE",
"token_name": "Poor Rich Boys",
"from_address": "0xf3c587a90de0ad18e2a81fe1f5d4a61b766b721b",
"to_address": "0xe44436ac79b3d92631395de6d86568af927c627a",
"amount": "1",
"updatedAt": {
"_seconds": 1656629963,
"_nanoseconds": 0
},
"token_id": "6185",
"contract_image_url": "https://lh3.googleusercontent.com/R8mHbHTv-p9GdtEUCkRsN6zUijC-md_mbLxJwcJGVceW3n3MyrLYS__6rM2Gb4JC4-o3qQ5HmKap52nplUb_nTvtEHdFmuZ_5TZ5HQ=s120",
"id": 3564706,
"transaction_type": "Single",
"contract_type": "ERC721",
"transaction_hash": "0x240e47e5dfd766f4650908a57e2ba200101941d72d44c733b34a27c4256b85ca",
"block_hash": "0x253f9b15655d6fb0ff860671409bbb09cc6d09f0a644bcc8e9281066589dac86",
"operator": null,
"token_address": "0x51cc1078b5972a4371cd6ae2c9b195fd3b103c10",
"block_number": "15052981",
"block_timestamp": "2022-06-30T22:58:55.000Z",
"createdAt": {
"_seconds": 1656629963,
"_nanoseconds": 0
}
}
]
curl --location --request GET 'https://us-central1-appgregator.cloudfunctions.net/docial/wallet/feed?name=qantor.co.id&connection_name=docial-1&address=0xe44436ac79b3d92631395de6d86568af927c627a' \
--header 'x-api-key: 43c464439b5507293ba7b315c9875907'
var axios = require('axios');
var config = {
method: 'get',
url: 'https://us-central1-appgregator.cloudfunctions.net/docial/wallet/feed?name=qantor.co.id&connection_name=docial-1&address=0xe44436ac79b3d92631395de6d86568af927c627a',
headers: {
'x-api-key': '43c464439b5507293ba7b315c9875907'
}
};
axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://us-central1-appgregator.cloudfunctions.net/docial/wallet/feed?name=qantor.co.id&connection_name=docial-1&address=0xe44436ac79b3d92631395de6d86568af927c627a',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_HTTPHEADER => array(
'x-api-key: 43c464439b5507293ba7b315c9875907'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;