Get Offers
GET/public/NftOffers
Get NFT offers. Gets the offers placed for a specific NFT.
Request
Query Parameters
nft_id stringrequired
Identifier of the NFT
Responses
- 200
Response
- application/json
- Schema
- Example (from schema)
- Example
Schema
- Array [
- MOD1
- MOD2
- MOD3
- MOD1
- MOD2
- MOD3
- ]
error string[]required
result objectnullable
offers object[]required
Array of offers
amount object required
An amount, either as a string, and integer, or a decimal value
oneOf
string
integer
number
auction_id stringnullable
currency stringrequired
id stringrequired
lock_time uint64required
nft_ids string[]required
social_id stringrequired
status stringrequired
Possible values: [Open
, Cancelled
, Filled
, PartialFilled
, Superceded
]
status_detail stringrequired
time uint64required
type stringrequired
Possible values: [Sell
, Buy
, Offer
]
usd_equivalence object required
An amount, either as a string, and integer, or a decimal value
oneOf
string
integer
number
volume uint64required
{
"error": [
"EGeneral:Invalid arguments"
],
"result": {
"offers": [
{
"amount": "string",
"auction_id": "string",
"currency": "string",
"id": "string",
"lock_time": 0,
"nft_ids": [
"string"
],
"social_id": "string",
"status": "Open",
"status_detail": "string",
"time": 0,
"type": "Sell",
"usd_equivalence": "string",
"volume": 0
}
]
}
}
{
"result": {
"offers": [
{
"id": "ONQYPLG-OFARL-35RBGO",
"amount": "0.5000000000",
"volume": 1,
"time": 1700703273865968600,
"social_id": "fee-web-combine",
"currency": "ETH",
"type": "Buy",
"status": "Open",
"nft_ids": [
"NTJQYVH-SLSNX-Q6DXVE"
],
"lock_time": 1700706873865968600,
"usd_equivalence": "10338700",
"status_detail": "LOCKED"
}
]
},
"error": []
}
Loading...