Get All Bids for a Listing

updated as of 10/27/2022

Get all Bids on a Listings

GET https://marketplace.api.manifoldxyz.dev/listing/{marketplaceAddress}/{listingID}/bids

Given a marketplaceAddress and a listingID, fetch all the bids for a listing

*Note: The marketplaceAddress for Manifold's Ethereum Mainnet contract is 0x3a3548e060be10c2614d0a4cb0c03cc9093fd799

Path Parameters

NameTypeDescription

marketplaceAddress*

String

The Manifold marketplace contract address

listingId*

Number

The listingId for the listing

[
    {
        "referrer": "0x6140f00e4ff3936702e68744f2b5978885464cbb",
        "bidder": "0x8f7c0b341cd8f48874c8620c533deee74303b252",
        "bidderENS": "metzvault.eth",
        "referrerENS": "yungwknd.eth",
        "amount": "0.069",
        "transactionHash": "0x6fabdf5544134d55948e489ac98c9b49fac70c18f60dd3f55bd037e5d5755d3b",
        "timestamp": 1665109895
    },
    {
        "bidder": "0x59988f8eba1da467f9c0dc751d496505941e6aec",
        "bidderENS": "viren.eth",
        "referrerENS": "",
        "amount": "0.05",
        "transactionHash": "0x6b54a5ffea6532571b9fd05125950a80526c1282d120d8b2816ebc10077bd2a5",
        "timestamp": 1665081503
    }
]

Example curl

curl -X GET https://marketplace.api.manifoldxyz.dev/listing/0x3a3548e060be10c2614d0a4cb0c03cc9093fd799/144/bids

Last updated