Get All Listings

updated as of 10/27/2022

Get all Listings wit filtering, sorting, & pagination

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

Fetch listings with more customization

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

Path Parameters

Query Parameters

[
    {
        "id": "1",
        "seller": "0x4b76837f8d8ad0a28590d06e53dcd44b6b7d4554",
        "sellerENS": "6529collectionsdeployer.eth",
        "sellerENSAvatar": "",
        "details": {
            "type_": 2,
            "initialAmount": {
                "type": "BigNumber",
                "hex": "0xe7f4e8b962a000"
            },
            "totalAvailable": "340",
            "totalPerSale": "1",
            "extensionInterval": 0,
            "erc20": null,
            "identityVerifier": "0x278AB8c68aD2afE19D0E07426F277b896b73F086",
            "startTime": 1657299600,
            "endTime": 1657512000
        },
        "token": {
            "spec": "erc1155",
            "address_": "0x33fd426905f149f8376e227d0c9d3340aad17af1",
            "id": {
                "type": "BigNumber",
                "hex": "0x05"
            },
            "lazy": false,
            "thumbnail": {
                "image_status": "ok",
                "image_url": "https://assets.manifoldxyz.workers.dev/image/upload/c_limit,q_80,w_200/WjpA-XWxKYVg6OI2TcOXZJpPw5Oh3wg-XhRyv9ZV3_s_t8es6v.gif",
                "animation_status": "ok",
                "animation_url": "https://assets.manifold.xyz/image/upload/c_limit,q_80,w_200/WjpA-XWxKYVg6OI2TcOXZJpPw5Oh3wg-XhRyv9ZV3_s_t8es6v.mp4"
            },
            "metadata": {
                "name": "rekt6529",
                "image": "https://arweave.net/WjpA-XWxKYVg6OI2TcOXZJpPw5Oh3wg-XhRyv9ZV3_s",
                "image_url": "https://arweave.net/WjpA-XWxKYVg6OI2TcOXZJpPw5Oh3wg-XhRyv9ZV3_s",
                "attributes": [
                    {
                        "value": "OSF",
                        "trait_type": "Artist"
                    },
                    {
                        "value": "WAGMI",
                        "trait_type": "Meme Name"
                    },
                    {
                        "value": "Yes",
                        "trait_type": "Punk 6529"
                    }
                ],
                "created_by": "6529 Collections",
                "description": "*Sips hopium*, \"we're all gonna make it\", *downs hopium*\n\nMeme: 2 \nSeason: 1 \nCard: 1",
                "external_url": "https://6529.io/collections/the-memes/meme2-season1-card1/",
                "image_details": {
                    "bytes": 8474416,
                    "width": 2048,
                    "format": "GIF",
                    "height": 2732,
                    "sha256": "1b67ca14866a10e5ded6e819c9af25f61fb388903ea068613574798d7aad1935"
                }
            }
        },
        "shareLink": "https://gallery.manifold.xyz/0x33fd426905f149f8376e227d0c9d3340aad17af1/5",
        "currentPrice": {
            "type": "BigNumber",
            "hex": "0xe7f4e8b962a000"
        },
        "address": "0x3a3548e060be10c2614d0a4cb0c03cc9093fd799",
        "version": 2
    },
    {...},
    {...},
    ...
]

Example curl

curl -X GET https://marketplace.api.manifoldxyz.dev/listing/0x3a3548e060be10c2614d0a4cb0c03cc9093fd799/activity?completed=true&sortBy=createdDate&sortAscending=true&pageNumber=1&pageSize=10

Last updated