mallow docs

Auction config account

GET
/v2/accounts/auction/auction-config/{address}

Fetches the raw on-chain account from the RPC (at confirmed commitment) and returns the same parsed shape streamed by GET /v2/ws/accounts, wrapped in a { viewSlot, account } envelope. An absent account is a 200 with a null account — viewSlot lets clients order the absence against stream write slots.

Authorization

ApiKeyAuth
x-api-key<token>

In: header

Path Parameters

address*string

AuctionConfig account address (base58). A PDA of the MallowAuction program, derived from seeds [mint, "auction_config"] — so it is computable from the artwork mint alone.

Length1 <= length

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v2/accounts/auction/auction-config/string"
{  "result": {    "viewSlot": 0,    "account": {      "accountType": "auctionConfig",      "bump": 0,      "version": 0,      "marketplaceAuthority": "string",      "seller": "string",      "mint": "string",      "bidMint": "string",      "startTime": 0,      "endTime": 0,      "highestBidAmount": "string",      "highestBidder": "string",      "reservePrice": "string",      "duration": 0,      "minBidIncrementBps": 0,      "timeExtPeriod": 0,      "timeExtDelta": 0,      "feeAccount": "string",      "feeBps": 0,      "pausedAt": 0,      "burnOnComplete": true,      "buyerAck": true,      "sellerAck": true,      "tokenStandard": 0,      "minBidIncrement": "string",      "absoluteIncrement": true,      "disablePrimarySplit": true,      "pubkey": "string",      "program": "mallow-auction"    }  }}