Get Listing by ID

updated as of 10/27/2022

Get listing data from a listingID

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

Given a marketplaceAddress and a listingID, fetch and return all the info 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

{
    "id": {
        "type": "BigNumber",
        "hex": "0x90"
    },
    "seller": "0xCB3bc9FF8A184533954C6eb1e643461dDAd49Ca3",
    "finalized": true,
    "totalSold": 1,
    "details": {
        "type_": 1,
        "initialAmount": {
            "type": "BigNumber",
            "hex": "0xb1a2bc2ec50000"
        },
        "totalAvailable": 1,
        "totalPerSale": 1,
        "extensionInterval": 600,
        "minIncrementBPS": 500,
        "erc20": "0x0000000000000000000000000000000000000000",
        "identityVerifier": "0x0000000000000000000000000000000000000000",
        "startTime": 1665081503,
        "endTime": 1665167903
    },
    "token": {
        "spec": 1,
        "address_": "0xa724Fcd797F7Ed2a7AAe8C486ce49f29cCae4525",
        "id": {
            "type": "BigNumber",
            "hex": "0x01"
        },
        "lazy": false
    },
    "referrerBPS": 690,
    "fees": {
        "deliverBPS": 0,
        "deliverFixed": {
            "type": "BigNumber",
            "hex": "0x00"
        }
    },
    "bid": {
        "amount": {
            "type": "BigNumber",
            "hex": "0xf5232269808000"
        },
        "bidder": "0x8f7C0b341Cd8f48874c8620c533DEEE74303b252",
        "timestamp": 0
    },
    "address": "0x3a3548e060be10c2614d0a4cb0c03cc9093fd799",
    "version": 2
}

Example curl

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

Where Can I Find the ListingID?

Last updated