Place Offer
POST/private/NftPlaceOffer
Place NFT offer. Creates a new offer for a specified NFT. This method accepts the offer details. In the response, the method returns the identifier of the offer.
Request
- application/x-www-form-urlencoded
Body
required
- MOD1
- MOD2
- MOD3
expire_time uint32nullable
Optional unix time (in seconds) defining the expire time of the offer
nft_id string[]required
Identifier of the NFT
nonce int64required
Nonce used in construction of API-Sign
header
offer_amount object required
Offer amount
oneOf
string
integer
number
offer_currency stringrequired
Offer currency code
otp stringnullable
pay_creator_fee booleannullable
Whether a user wants to pay a creator fee or not
quote_id stringnullable
Optional quote id, if the offer is linked to an existing quote
Responses
- 200
Response
- application/json
- Schema
- Example (from schema)
- Example
Schema
error string[]required
result objectnullable
offer_id stringrequired
Offer id
{
"error": [
"EGeneral:Invalid arguments"
],
"result": {
"offer_id": "string"
}
}
{
"result": {
"offer_id": "ON4LK46-LJSMF-5HHO65"
},
"error": []
}
Loading...