Get <NFT Details> Other Related Interface
Return the ID in the list through the <Top NFT Collection> Interface to obtain the details of a single NFT, and return the price, bids, and activity information of the NFT
Request Address: /api/v2/meta/getNftDetailOthers
Request Method: GET
Request Parameters:
id
NFT ID
string
event_type
Data Type (price|bids|activity)
string
contractAddress
Contract Address
string
tokenId
NFT Token ID
string
Price Type Output
Output Parameters: Array
total_price
Price
integer
payment_token
Token Detail
object
created_date
Created Date
2022-05-13T09:30:03.044824
Output example:
{
"resCode":"100",
"resMsg":"Success",
"data":{
"lists":[
{
"total_price":"10000000000000000000",
"payment_token":{
"symbol":"ETH",
"address":"0x0000000000000000000000000000000000000000",
"image_url":"https://openseauserdata.com/files/6f8e2979d428180222796ff4a33ab929.svg",
"name":"Ether",
"decimals":18,
"eth_price":"1.000000000000000",
"usd_price":"2038.549999999999955000"
},
"created_date":"2022-05-11T03:22:40.840355"
}
]
}
}
Bids Type Output
Output Parameters: Array
total_price
Price
integer
payment_token
Token Detail
object
closing_date
Closing Date
2022-05-13T09:30:03.044824
maker_address
Maker Contract Address
string
Output example:
{
"resCode":"100",
"resMsg":"Success",
"data":{
"lists":[
{
"total_price":"13000000000000000000",
"payment_token":{
"symbol":"WETH",
"address":"0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
"image_url":"https://openseauserdata.com/files/accae6b6fb3888cbff27a013729c22dc.svg",
"name":"Wrapped Ether",
"decimals":18,
"eth_price":"1.000000000000000",
"usd_price":"2036.359999999999900000"
},
"closing_date":"2022-05-16T02:23:49",
"maker_address":"0x578bd725e7ac96d8b26c82e2c8daa843f7ad1226"
}
]
}
}
Activity Type Output
Output Parameters: Array - Offer
event
Data Type
integer
payment_token
Token Detail
object
from_address
Source Contract Address
string
created_date
Created Date
2022-05-13T09:30:03.044824
Output Parameters: Array - Sale
event
Data Type
string
price
Price
integer
payment_token
Token Detail
object
from_address
Original Contract Address
string
to_address
Receiver Contract Address
Receiver Contract Address
created_date
Created Date
2022-05-13T09:30:03.044824
Output Parameters: Array - Transfer
event
Data Type
string
from_address
Original Contract Address
string
to_address
Receiver Contract Address
Receiver Contract Address
created_date
Created Date
2022-05-13T09:30:03.044824
Output Parameters: Array List
event
Data Type
string
price
Price
integer
payment_token
Token Detail
object
from_address
Original Contract Address
string
created_date
Created Date
2022-05-13T09:30:03.044824
Output example:
{
"resCode":"100",
"resMsg":"Success",
"data":{
"lists":[
{
"event":"Offer",
"price":"10070250000000000000",
"payment_token":{
"symbol":"WETH",
"address":"0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
"image_url":"https://openseauserdata.com/files/accae6b6fb3888cbff27a013729c22dc.svg",
"name":"Wrapped Ether",
"decimals":18,
"eth_price":"1.000000000000000",
"usd_price":"2095.340000000000146000"
},
"from_address":"0x30efcd5a21beca1837d84f5e4552ff689d907e92",
"created_date":"2022-05-13T09:30:03.044824"
},
{
"event":"Sale",
"price":"10000000000000000000",
"payment_token":{
"symbol":"ETH",
"address":"0x0000000000000000000000000000000000000000",
"image_url":"https://openseauserdata.com/files/6f8e2979d428180222796ff4a33ab929.svg",
"name":"Ether",
"decimals":18,
"eth_price":"1.000000000000000",
"usd_price":"2095.389999999999873000"
},
"from_address":"0xb60704d2cd7dcd1468675a68f4ec43791ce35ef9",
"to_address":"0x5a7a6b69c6382000fd35711fd28440f415417318",
"created_date":"2022-05-11T03:22:40.840355"
},
{
"event":"Transfer",
"from_address":"0xb60704d2cd7dcd1468675a68f4ec43791ce35ef9",
"to_address":"0x5a7a6b69c6382000fd35711fd28440f415417318",
"created_date":"2022-05-11T03:22:40.731361"
},
{
"event":"List",
"price":"10000000000000000000",
"payment_token":{
"symbol":"ETH",
"address":"0x0000000000000000000000000000000000000000",
"image_url":"https://openseauserdata.com/files/6f8e2979d428180222796ff4a33ab929.svg",
"name":"Ether",
"decimals":18,
"eth_price":"1.000000000000000",
"usd_price":"2095.389999999999873000"
},
"from_address":"0xb60704d2cd7dcd1468675a68f4ec43791ce35ef9",
"created_date":"2022-05-11T03:20:42.033383"
},
{
"event":"Offer",
"price":"7770000000000000000",
"payment_token":{
"symbol":"WETH",
"address":"0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
"image_url":"https://openseauserdata.com/files/accae6b6fb3888cbff27a013729c22dc.svg",
"name":"Wrapped Ether",
"decimals":18,
"eth_price":"1.000000000000000",
"usd_price":"2095.340000000000146000"
},
"from_address":"0xfecfec3b422e0609217a2f037042d0f18d35d449",
"created_date":"2022-05-11T01:24:09.434832"
}
]
}
}

Last updated