Get NFT Deposit History(USER_DATA)
API Description
et NFT Deposit History
HTTP Request
GET /sapi/v1/nft/history/deposit
Request Weight(UID)
3000
Request Parameters
Name | Type | Mandatory | Description |
---|---|---|---|
startTime | LONG | NO | |
endTime | LONG | NO | |
limit | INT | NO | Default 50, Max 50 |
page | INT | NO | Default 1 |
recvWindow | LONG | NO | |
timestamp | LONG | YES |
- The max interval between startTime and endTime is 90 days.
- If startTime and endTime are not sent, the recent 7 days' data will be returned.
Response Example
{
"total": 2,
"list": [
{
"network": "ETH", // NFT Network
"txID": null, // Transaction ID
"contractAdrress": "0xe507c961ee127d4439977a61af39c34eafee0dc6", // NFT Contract Address
"tokenId": "10014", // NFT Token ID
"timestamp": 1629986047000
},
{
"network": "BSC",
"txID": null,
"contractAdrress": "0x058451b463bab04f52c0799d55c4094f507acfa9",
"tokenId": "10016",
"timestamp": 1630083581000
}
]
}