Get Listing by Token

updated as of 10/27/2022

Get listing data from a token

GET https://marketplace.api.manifoldxyz.dev/listing/token/{tokenAddress}/{tokenId}

Given a tokenAddress and a tokenID, fetch and return all the info for a listing.

Path Parameters

NameTypeDescription

tokenAddress*

String

the tokenAddress for the NFT

tokenID*

Number

the tokenID for the NFT

{
    "id": {
        "type": "BigNumber",
        "hex": "0x8e"
    },
    "seller": "0xbA4D076ff0eE915F494700A894912b7DadD2Dfca",
    "finalized": true,
    "totalSold": 1,
    "details": {
        "type_": 1,
        "initialAmount": {
            "type": "BigNumber",
            "hex": "0x015af1d78b58c40000"
        },
        "totalAvailable": 1,
        "totalPerSale": 1,
        "extensionInterval": 600,
        "minIncrementBPS": 500,
        "erc20": "0x0000000000000000000000000000000000000000",
        "identityVerifier": "0x0000000000000000000000000000000000000000",
        "startTime": 1665095579,
        "endTime": 1665181979
    },
    "token": {
        "spec": 1,
        "address_": "0xfcE4Bf28aB33A38BFB8BF3604AE6F09Fa78Ff6ce",
        "id": {
            "type": "BigNumber",
            "hex": "0x0137"
        },
        "lazy": false
    },
    "referrerBPS": 690,
    "fees": {
        "deliverBPS": 0,
        "deliverFixed": {
            "type": "BigNumber",
            "hex": "0x00"
        }
    },
    "bid": {
        "amount": {
            "type": "BigNumber",
            "hex": "0x01754fff7a4a020000"
        },
        "bidder": "0x6414258EE299B740C19a11B938AFe30A373d1AFd",
        "timestamp": 0
    },
    "address": "0x3a3548e060be10c2614d0a4cb0c03cc9093fd799",
    "version": 2
}

Example curl

curl -X GET https://marketplace.api.manifoldxyz.dev/listing/token/0xfcE4Bf28aB33A38BFB8BF3604AE6F09Fa78Ff6ce/311

Last updated