Commerce APIs
GET Auction
Overview
WaaS React SDK
Wallet as a Service (WaaS)
- Overview
- Quickstart
- Errors
- Pagination
- Wallet Creation APIs
- Wallet Experience APIs
- NFT APIs
- Web3 APIs
- SDK
Integrations
- Get Started
- Authentication
- Connectors
- FAQ
- Partners
Commerce APIs
GET Auction
Get details about an auction.
GET
/
v1
/
auctions
/
{auctionId}
curl --request GET \
--url https://api.bitski.com/v1/auctions/{auctionId}
{
"auction": {
"auctionContractAddress": "0xa4ef984773fd233c4cbed9cb1b905a3fa21e9461",
"auctionStandard": "NON_FUNGIBLE_AUCTION",
"automaticSettlement": true,
"bids": [
{
"amount": "0x105b73c286c329a1",
"auctionId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"bidder": "22e693e7-befc-4c6f-a135-5f0029c556c2",
"createdAt": "2023-04-20T01:19:15.884Z",
"currency": "0xa4ef984773fd233c4cbed9cb1b905a3fa21e9461",
"transactionHash": "0x76cbbfd0fa31059647017c28a0f855b6494b995ac77e1228064ba47debf0bb34",
"username": "nft_fan"
}
],
"ended": true,
"externalId": null,
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"network": "mainnet",
"tokenContractAddress": "0x0C3b9C785723B79Cf8D61a4A71E0ab5A00584772",
"tokenId": "0x1",
"tokenMetadata": {
"animation_url": null,
"attributes": null,
"background_color": null,
"description": "A very special NFT",
"external_url": "https://www.bitski.com/@Stapleverse",
"image": "https://cdn.bitskistatic.com/tokens-raw/54676382-bab5-408d-afe2-fc6f160da4a8/06fd0294-a425-44c7-96e8-9d24757163b4.png",
"name": "NFT Token #1",
"properties": {},
"youtube_url": null
}
}
}
Path
The auction id
Examples
Response
{
"auction": {
"auctionContractAddress": "0xa4ef984773fd233c4cbed9cb1b905a3fa21e9461",
"auctionStandard": "NON_FUNGIBLE_AUCTION",
"automaticSettlement": true,
"bids": [
{
"amount": "0x105b73c286c329a1",
"auctionId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"bidder": "22e693e7-befc-4c6f-a135-5f0029c556c2",
"createdAt": "2023-04-20T01:19:15.884Z",
"currency": "0xa4ef984773fd233c4cbed9cb1b905a3fa21e9461",
"transactionHash": "0x76cbbfd0fa31059647017c28a0f855b6494b995ac77e1228064ba47debf0bb34",
"username": "nft_fan"
}
],
"ended": true,
"externalId": null,
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"network": "mainnet",
"tokenContractAddress": "0x0C3b9C785723B79Cf8D61a4A71E0ab5A00584772",
"tokenId": "0x1",
"tokenMetadata": {
"animation_url": null,
"attributes": null,
"background_color": null,
"description": "A very special NFT",
"external_url": "https://www.bitski.com/@Stapleverse",
"image": "https://cdn.bitskistatic.com/tokens-raw/54676382-bab5-408d-afe2-fc6f160da4a8/06fd0294-a425-44c7-96e8-9d24757163b4.png",
"name": "NFT Token #1",
"properties": {},
"youtube_url": null
}
}
}
curl --request GET \
--url https://api.bitski.com/v1/auctions/{auctionId}
{
"auction": {
"auctionContractAddress": "0xa4ef984773fd233c4cbed9cb1b905a3fa21e9461",
"auctionStandard": "NON_FUNGIBLE_AUCTION",
"automaticSettlement": true,
"bids": [
{
"amount": "0x105b73c286c329a1",
"auctionId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"bidder": "22e693e7-befc-4c6f-a135-5f0029c556c2",
"createdAt": "2023-04-20T01:19:15.884Z",
"currency": "0xa4ef984773fd233c4cbed9cb1b905a3fa21e9461",
"transactionHash": "0x76cbbfd0fa31059647017c28a0f855b6494b995ac77e1228064ba47debf0bb34",
"username": "nft_fan"
}
],
"ended": true,
"externalId": null,
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"network": "mainnet",
"tokenContractAddress": "0x0C3b9C785723B79Cf8D61a4A71E0ab5A00584772",
"tokenId": "0x1",
"tokenMetadata": {
"animation_url": null,
"attributes": null,
"background_color": null,
"description": "A very special NFT",
"external_url": "https://www.bitski.com/@Stapleverse",
"image": "https://cdn.bitskistatic.com/tokens-raw/54676382-bab5-408d-afe2-fc6f160da4a8/06fd0294-a425-44c7-96e8-9d24757163b4.png",
"name": "NFT Token #1",
"properties": {},
"youtube_url": null
}
}
}