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. /scheduledBids

GET /scheduledBids/:bidder

Get scheduled bids by bidder address

GET https://api.mallow.art/v1/scheduledBids/:bidder

Returns a bidder's last 100 scheduled bids. Bids in the deposit-confirmed state can be canceled by the bidder using the POST /scheduledBids/getCancelBidTx endpoint.

Path Parameters

Name
Type
Description

bidder*

string

Bidder's wallet address

{
    "result": [{
        "mintAccount": "7asFqK5QRyaN3kRayBjgWGga9dMq9Y52DNAfnyYmYdcU",
        "scheduledTime": "2025-04-20T06:09:00Z",
        "bidAmount": 1000000000, // 1 SOL
        "bidMint": "So11111111111111111111111111111111111111112",
        "state": "deposit-confirmed"
    }]
}
{
    "error": { 
        "message": "Invalid API Key" 
    }
}
{
    "error": { 
        "message": "Missing bidder address parameter" 
    }
}

PreviousPOST /scheduledBids/getCancelBidTxNextActions/Blinks

Last updated 1 month ago