v1

latestOpenAPI 3.0.12026-07-142791104.2 KB
Orders

Get maker nonce

This endpoint can be used to fetch the latest order nonce value. The nonce for each order is unique and incremented each time..

get/openapi/v1/orders/nonce

Query parameters

chain'eth' | 'bsc' | 'polygon' | 'avalanche' | 'arbitrum' | 'zksync' | 'linea' | 'starknet' | 'opbnb' | 'base' | 'scroll' | 'manta_pacific' | 'optimism' | 'mantle' | 'zkfair' | 'blast' | 'merlin' | 'mode' | 'cyber' | 'bob' | 'lightlink' | 'zeta' | 'nibiru' | 'abstract' | 'bitlayer' | 'mantra' | 'monad' | 'ink' required

Chain Name, default is eth.

makerstring required

The order maker's wallet address

schema'erc721' | 'erc1155' required

Schema, default is erc721.

countinteger

The number of nonces occupied this time, The default is 1, for example: count is 5, and the returned data is 100, then the valid nonce range returned is [100, 100+5-1].

Response

OK

codeinteger

Error Code

msgstring

Error Message

messagestring

Example response

{
  "data": {
    "nonce": "125"
  }
}