POST
/
rpc
/
Marketplace
/
GetOrders
curl --request POST \
  --url https://marketplace-api.sequence.app/amoy/rpc/Marketplace/GetOrders \
  --header 'Content-Type: application/json' \
  --header 'X-Access-Key: <api-key>' \
  --data '{
  "input": [
    {
      "contractAddress": "<string>",
      "orderId": "<string>",
      "marketplace": "unknown"
    }
  ],
  "page": {
    "page": 123,
    "pageSize": 123,
    "more": true,
    "sort": [
      {
        "column": "<string>",
        "order": "DESC"
      }
    ]
  }
}'
{
  "orders": [
    {
      "id": 123,
      "collectionId": 123,
      "collectibleId": 123,
      "orderId": "<string>",
      "marketplace": "unknown",
      "source": "unknown",
      "side": "unknown",
      "status": "unknown",
      "chainId": 123,
      "collectionContractAddress": "<string>",
      "tokenId": "<string>",
      "createdBy": "<string>",
      "priceAmount": "<string>",
      "priceAmountFormatted": "<string>",
      "priceAmountNet": "<string>",
      "priceAmountNetFormatted": "<string>",
      "priceCurrencyAddress": "<string>",
      "priceDecimals": 123,
      "priceUSD": 123,
      "quantityInitial": "<string>",
      "quantityInitialFormatted": "<string>",
      "quantityRemaining": "<string>",
      "quantityRemainingFormatted": "<string>",
      "quantityAvailable": "<string>",
      "quantityAvailableFormatted": "<string>",
      "quantityDecimals": 123,
      "feeBps": 123,
      "feeBreakdown": [
        {
          "kind": "<string>",
          "recipientAddress": "<string>",
          "bps": 123
        }
      ],
      "validFrom": "<string>",
      "validUntil": "<string>",
      "blockNumber": 123,
      "orderCreatedAt": "<string>",
      "orderUpdatedAt": "<string>",
      "createdAt": "<string>",
      "updatedAt": "<string>",
      "deletedAt": "<string>"
    }
  ],
  "page": {
    "page": 123,
    "pageSize": 123,
    "more": true,
    "sort": [
      {
        "column": "<string>",
        "order": "DESC"
      }
    ]
  }
}

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
input
object[]

[]GetOrdersInput

page
object

Response

200
application/json
OK
orders
object[]

[]Order

page
object