Get NFT Quotes
GET/public/NftQuotes
Get NFT quotes. Creates a new quote for an NFT. This method accepts the quote details (or an array of multiple quotes). In the response, the method returns the identifier of the quotes.
Request
Query Parameters
count uint32required
has_offer boolean
Optional bool to filter quotes that have quotes or not
nft_id string[]required
Array of NFT identifiers
Responses
- 200
Response
- application/json
- Schema
- Example (from schema)
- Example
Schema
error string[]required
result objectnullable
{
"error": [
"EGeneral:Invalid arguments"
],
"result": {}
}
{
"error": [],
"result": {
"NT4EFBO-OWGI5-QLO7AG": [
{
"quote_id": "QNSFZED-QWKVB-GLI227",
"currency": "ETH",
"amount": "0.0420000000",
"expire_time": null,
"has_offer": false
}
]
}
}
Loading...