Create Auction
POST/private/NftCreateAuction
Create NFT auction. Creates a new auction for a user owned NFT in Kraken's custody. This method accepts the auction details. In the response, the method returns the identifier of the auction.
Request
- application/x-www-form-urlencoded
Body
required
- MOD1
- MOD2
- MOD3
- MOD4
- MOD1
- MOD2
- MOD3
- MOD4
- MOD1
- MOD2
- MOD3
- MOD4
- MOD1
- MOD2
- MOD3
- MOD4
Auction currency code
auction_params objectrequired
Auction parameters
Whether users can make offers with different prices than ask
ask_price object
Only for Fixed price auction type Auction price set by the seller
string
integer
number
object
Optional unix time (in seconds) defining the expiry time of the auction
Only for Ascending auction type Optional array of seconds defining the extension times
Only for Descending and Ascending auction types Minimum increment by which consecutive bids must differ
min_price object
Only for Descending and Ascending auction types Minimum auction price set by the seller
string
integer
number
object
reserve_price object
Only for Ascending auction type Optional minimum price at which the item can be sold
string
integer
number
object
start_price object
Only for Descending auction type Start auction price set by the seller
string
integer
number
object
An optional boolean indicating whether the auction is a Vickrey auction In a Vickrey auction, the highest bidder wins but pays the price bid by the second-highest bidder
Possible values: [ascending
, descending
, fixed
]
Auction type
Array of NFT ids to put in auction
Nonce used in construction of API-Sign
header
Optional offer id linked to the auction
Whether a user wants to pay a creator fee or not
Optional unix time (in seconds) defining the start time of the auction
Responses
- 200
Response
- application/json
- Schema
- Example (from schema)
- Example
Schema
result objectnullable
Auction id
{
"error": [
"EGeneral:Invalid arguments"
],
"result": {
"auction_id": "string"
}
}
{
"error": [],
"result": {
"auction_id": "AT2POJ-4CH3O-4TH6JH"
}
}