mallow docs

Scheduled bids for a bidder

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

Authorization

ApiKeyAuth
x-api-key<token>

In: header

Path Parameters

bidder*string

Bidder's wallet address (base58).

Length1 <= length

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/scheduledBids/string"
{  "result": [    {      "id": "string",      "bidder": "string",      "mint": "string",      "amount": 0,      "state": "string"    }  ]}