AssetMoney
Search
⌃K

/transfers

get
https://asset.money/transfers?
address=${address}
Gets historical nft transfers of a given address

request example

curl
Node(axios)
curl -G https://app.asset.money/transfers
-H "X-API-KEY: YOUR_API_KEY"
-d 'address=0xaB14023979A34b4Abb17ABD099A1De1dc452011a'
// You need an API key to access the endpoint
const response = await axios.get('https://app.asset.money/transfers?address=0xaB14023979A34b4Abb17ABD099A1De1dc452011a', {
headers: {
'X-API-KEY':YOUR_API_KEY
}
})

response example

[
{
"block_number": "14666788",
"block_timestamp": "2022-04-27T13:39:01.000Z",
"block_hash": "0x949403785b9f23957faab8f228189e2f232c8659e205db06ba3a3637219b3012",
"transaction_hash": "0xed3d3a9abd8dbb7511a7367a0b0c86f7a3555fc0350c25411505f9a62227c53a",
"transaction_index": 47,
"log_index": 115,
"value": "0",
"contract_type": "ERC721",
"transaction_type": "Single",
"token_address": "0x57f1887a8bf19b14fc0df6fd9b2acc9af147ea85",
"token_id": "4986143538224850458289161461713002121436183035194179356576392819102037234306",
"from_address": "0xab14023979a34b4abb17abd099a1de1dc452011a",
"to_address": "0xa0a112f44b44d49c8401cc7f223566187cacd2e4",
"amount": "1",
"verified": 1,
"operator": null
},
{
"block_number": "14666773",
"block_timestamp": "2022-04-27T13:35:05.000Z",
"block_hash": "0x10b7fd3d6f504f7cb68814a3d070c0eb87cffeeb52bea321e8b11458d32a65d2",
"transaction_hash": "0x048a40c388b7adfa1e19c50d521d629d3dbc3bfd596eb0e92235a1f3b8cc4f50",
"transaction_index": 161,
"log_index": 196,
"value": "3810603823430915",
"contract_type": "ERC721",
"transaction_type": "Single",
"token_address": "0x57f1887a8bf19b14fc0df6fd9b2acc9af147ea85",
"token_id": "4986143538224850458289161461713002121436183035194179356576392819102037234306",
"from_address": "0x283af0b28c62c092c9727f1ee09c02ca627eb7f5",
"to_address": "0xab14023979a34b4abb17abd099a1de1dc452011a",
"amount": "1",
"verified": 1,
"operator": null
},
{
"block_number": "14666489",
"block_timestamp": "2022-04-27T12:33:24.000Z",
"block_hash": "0x3323582132cb33cbbb89421092662f78df448cb5c4827e984676c48c3143195e",
"transaction_hash": "0x53ca70c31729be4552b8a224c2896fd36d0d52693d452ef09e5c86d2d26bae64",
"transaction_index": 245,
"log_index": 300,
"value": "1901919029211581",
"contract_type": "ERC721",
"transaction_type": "Single",
"token_address": "0x57f1887a8bf19b14fc0df6fd9b2acc9af147ea85",
"token_id": "32370504215356292364721170670146903197668996961863163491723330114401486955985",
"from_address": "0x283af0b28c62c092c9727f1ee09c02ca627eb7f5",
"to_address": "0xab14023979a34b4abb17abd099a1de1dc452011a",
"amount": "1",
"verified": 1,
"operator": null
}
]