Accept NFT Offer
POSThttps://api.kraken.com/0/private/NftAcceptOffer
Accept NFT offer. This method accepts the identifier of the offer to accept. Returns the identifier of the auction created.
Request
- application/x-www-form-urlencoded
Body
required
nonce int64required
Nonce used in construction of API-Sign
header
offer_id stringrequired
Offer id
otp stringnullable
pay_creator_fee booleannullable
Whether a user wants to pay a creator fee or no
Responses
- 200
Response
- application/json
- Schema
- Example (from schema)
- Example
Schema
error string[]required
result objectnullable
auction_id stringrequired
Auction id
{
"error": [
"EGeneral:Invalid arguments"
],
"result": {
"auction_id": "string"
}
}
{
"error": [],
"result": {
"auction_id": "AYXTZ3-LE64M-LGTI6D"
}
}
Authorization: API-Key
name: API-Keytype: apiKeyscopes: API-Key
description: The "API-Key" header should contain your API key.in: header
- curl
- python
- go
- nodejs
- CURL
curl -L -X POST 'https://api.kraken.com/0/private/NftAcceptOffer' \
-H 'Content-Type: application/x-www-form-urlencoded' \
-H 'Accept: application/json' \
-H 'API-Key: <API_KEY_VALUE>'