v1

latestOpenAPI 3.0.12026-07-142791104.2 KB
Collection

Get collection fee info

This endpoint can be used to fetch collection fee information from the system

post/openapi/v1/collection/fee

Request body

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

Example request

{
  "chain": "eth",
  "data": [
    {
      "contractAddress": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d"
    }
  ]
}

Response

OK

codeinteger

Error Code

msgstring

Error Message

messagestring

Example response

{
  "data": {
    "feeList": [
      {
        "contractAddress": "0x88af41822c65a64e9614d3784fa1c99b8a02e5f5",
        "royaltyFeeAddress": "0xfcbf179b11d93211222bdd78004387546289547d",
        "royaltyFeePoints": 200,
        "protocolFeeAddress": "0x0000000000000000000000000000000000000000",
        "protocolFeePoints": 200
      }
    ]
  }
}