POST /artworks/listedBySeller

Search for a seller's listed artworks

POST https://api.mallow.art/v1/artworks/listedBySeller

Returns listed artwork info for the given seller address. Each page contains 30 results.

Request Body

Name
Type
Description

page*

number

Page to fetch. Starts at 0.

sort*

string

Sort by recently-listed or ending-soon

filter.seller*

string

Seller's address

filter.listingTypes

string[]

Listing types to filter by. Can be any of auction, buy-now, raffle. Omit field to get listings of all types.

filter.includeLinkedWallets

boolean

Include artworks listed by the seller's linked wallets, defaults to false.

{
    "result": [],
    // Total number of listings matching the filter
    "total": 1,
    // Present when another page is available
    "nextPage": 1
}

Last updated