mallow
  • SMORES Token
    • Overview
    • How to earn
    • Economics
    • SMORES Uses
    • FAQ
  • REST API
    • Overview
    • Reference
      • Types
        • Artwork
        • Collection
      • /artworks
        • GET /artworks/:mintAccount
        • GET /artworks/trending
        • POST /artworks/listedBySeller
        • POST /artworks/byCreator
      • /events
        • POST /events/byMint
        • POST /events/bySeller
      • /users
        • GET /users/:address
      • /rewards
        • GET /rewards/unclaimed/:address
      • /getBidOrBuyTx
        • POST /getBidOrBuyTx
      • /scheduledBids
        • POST /scheduledBids/getBidTx
        • POST /scheduledBids/getCancelBidTx
        • GET /scheduledBids/:bidder
  • Actions/Blinks
Powered by GitBook
On this page
  1. REST API
  2. Reference
  3. /artworks

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
}
{
    "error": { 
        "message": "Invalid API Key" 
    }
}
{
    "error": { 
        "message": "Missing search params" 
    }
}
PreviousGET /artworks/trendingNextPOST /artworks/byCreator

Last updated 3 days ago