v1

latestOpenAPI 3.0.3raw.githubusercontent.com2025-06-1883262329.3 KB
NFT Sales

Get all Orders (for sync)

Returns all sales & transfers in accordance with specified filters and sorted by db updated date. During internal updates (like migrations) Orders can be updated for technical reasons. In such case, last update date won't be changed. If you want to store Orders in your own storage and keep it synced, use this method.

get/v0.1/orders/sync

Query parameters

blockchain'APTOS' | 'ETHEREUM' | 'POLYGON' | 'FLOW' | 'SOLANA' | 'IMMUTABLEX' | 'MANTLE' | 'ARBITRUM' | 'CHILIZ' | 'LIGHTLINK' | 'ZKSYNC' | 'ASTARZKEVM' | 'BASE' | 'RARI' | 'CELO' | 'FIEF' | 'XAI' | 'KROMA' | 'ZKLINK' | 'OASYS' | 'QUAI' | 'ECLIPSE' | 'SAAKURU' | 'OASIS' | 'PALM' | 'MATCH' | 'FIVIRE' | 'SEI' | 'CAMP' | 'LISK' | 'MOONBEAM' | 'ETHERLINK' | 'ZKCANDY' | 'ALEPHZERO' | 'BERACHAIN' | 'ABSTRACT' | 'SHAPE' | 'TELOS' | 'HEDERAEVM' | 'VICTION' | 'SETTLUS' | 'GOAT' | 'HYPEREVM' | 'CROSSFI' | 'MEGAETH' | 'MEGAETHTESTNET' | 'BASECAMP' | 'BASECAMPTESTNET' | 'SOMNIA' required
Example:ETHEREUM

Type of the blockchain network

continuationstring

Continuation token from the previous response

sizeinteger

The number of orders to return

sort'DB_UPDATE_ASC' | 'DB_UPDATE_DESC'

Order sort

Response

OK

continuationstring

Continuation token to paginate orders search result

Example response

{
  "orders": [
    {
      "id": "ETHEREUM:0x19f487016770542dc6137b06499a4f7b42c9580f12d85d6347964b03b7682143",
      "maker": "ETHEREUM:0x4765273c477c2dc484da4f1984639e943adccfeb",
      "taker": "ETHEREUM:0x4765273c477c2dc484da4f1984639e943adccfeb",
      "make": {
        "type": {
          "blockchain": "ETHEREUM",
          "contract": "ETHEREUM:0xd07dc4262bcdbf85190c01c996b4c06a461d2430"
        }
      },
      "take": {
        "type": {
          "blockchain": "ETHEREUM",
          "contract": "ETHEREUM:0xd07dc4262bcdbf85190c01c996b4c06a461d2430"
        }
      },
      "feeTakers": [
        "ETHEREUM:0x4765273c477c2dc484da4f1984639e943adccfeb"
      ],
      "data": {
        "payouts": [
          {
            "account": "ETHEREUM:0x4765273c477c2dc484da4f1984639e943adccfeb"
          }
        ],
        "originFees": [
          {
            "account": "ETHEREUM:0x4765273c477c2dc484da4f1984639e943adccfeb"
          }
        ]
      }
    }
  ]
}