Skip to main content

PaginatedBurnResponse

hasNextbooleanrequired

Indicates if there are more items to fetch

Example: true
nextCursorstring

Cursor to be used to fetch the next page of items

Example: eyJpZCI6IjEyM2U0NTY3ZS1lODliLTEyZDMtYTQ1Ni00MjY2MTQxNzQwMDAifQ==
items object[]required
  • Array [
  • idstring<uuid>required

    Identifier of the burn transaction

    Example: 123e4567-e89b-12d3-a456-426614174000
    fromstringrequired

    Account ID from which the tokens are burned

    Possible values: Value must match regular expression ^0x[0-9a-fA-F]{40}$

    Example: 0x2b563420722cbcfc84857129bef775e0dc5f1401
    amountstringrequired

    Amount of tokens burned

    Example: 1
    timestampnumberrequired

    Timestamp of the burn transaction

    Example: 1256953732
    txHashstringrequired

    Hash of the burn transaction

    Possible values: Value must match regular expression ^0x[0-9a-fA-F]{64}$

    Example: 0x5c504edc5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5
    nftIdstring

    NFT ID

    Example: 9
  • ]
  • PaginatedBurnResponse
    {
    "items": [
    {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "from": "0x2b563420722cbcfc84857129bef775e0dc5f1401",
    "amount": "1",
    "timestamp": 1256953732,
    "txHash": "0x5c504edc5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5c5",
    "nftId": "9"
    }
    ],
    "hasNext": true,
    "nextCursor": "eyJpZCI6IjEyM2U0NTY3ZS1lODliLTEyZDMtYTQ1Ni00MjY2MTQxNzQwMDAifQ=="
    }