mallow docs

Listing account

GET
/v2/accounts/market/listing/{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

Listing account address (base58). A PDA of the MallowMarket program, derived from seeds ["listing", mint] — 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/market/listing/string"
{  "result": {    "viewSlot": 0,    "account": {      "accountType": "listing",      "bump": 0,      "version": 0,      "marketplaceAuthority": "string",      "seller": "string",      "mint": "string",      "currencyMint": "string",      "price": "string",      "endTime": 0,      "listedAt": 0,      "feeAccount": "string",      "feeBps": 0,      "startTime": 0,      "whitelistConfig": "string",      "buyerSetsPrice": true,      "editionsLimit": 0,      "nonCustodial": true,      "tokenStandard": 0,      "disablePrimarySplit": true,      "pubkey": "string",      "program": "mallow-market"    }  }}