mallow docs

Whitelist config account

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

WhitelistConfig account address (base58). A PDA of the MallowMarket program, derived from seeds ["whitelist_config", listing].

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/whitelist-config/string"
{  "result": {    "viewSlot": 0,    "account": {      "accountType": "whitelistConfig",      "bump": 0,      "duration": 0,      "walletsRoot": "string",      "collectionsOrCreators": [        "string"      ],      "pubkey": "string",      "program": "mallow-market"    }  }}