POST /artworks/byCreator

Search for a creator's artworks

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

Returns artwork info for artworks created by the given creator 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.creator*

string

Creator's address

filter.listingTypes

string[]

Listing types to filter by. Can be any of auction, buy-now, raffle, unlisted. Omit field to get artworks in any state.

filter.includeLinkedWallets

boolean

Include artworks created by the creator'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