Skip to main content
POST
/
rpc
/
Marketplace
/
ListCollectibles
list of collectibles with best order for each collectible, by default this only returns collectibles with an order
curl --request POST \
  --url https://marketplace-api.sequence.app/amoy/rpc/Marketplace/ListCollectibles \
  --header 'Content-Type: application/json' \
  --header 'X-Access-Key: <api-key>' \
  --data '
{
  "side": "unknown",
  "contractAddress": "<string>"
}
'
{
  "collectibles": [
    {
      "metadata": {
        "tokenId": "<string>",
        "name": "<string>",
        "attributes": [
          {}
        ],
        "description": "<string>",
        "image": "<string>",
        "video": "<string>",
        "audio": "<string>",
        "properties": {},
        "imageData": "<string>",
        "externalUrl": "<string>",
        "backgroundColor": "<string>",
        "animationUrl": "<string>",
        "decimals": 123,
        "updatedAt": "<string>",
        "assets": [
          {
            "id": 123,
            "collectionId": 123,
            "tokenId": "<string>",
            "metadataField": "<string>",
            "url": "<string>",
            "filename": "<string>",
            "filesize": 123,
            "mimeType": "<string>",
            "width": 123,
            "height": 123,
            "updatedAt": "<string>"
          }
        ]
      }
    }
  ]
}

Authorizations

X-Access-Key
string
header
required

Public project access key for authenticating requests obtained on Sequence Builder. Example Test Key: AQAAAAAAAEGvyZiWA9FMslYeG_yayXaHnSI

Body

application/json
side
enum<string>

Represented as uint8 on the server side

Available options:
unknown,
listing,
offer
contractAddress
string
filter
object
page
object

Response

OK

collectibles
object[]

[]CollectibleOrder

page
object