v1

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

Get NFT Activities

Returns Activities related to specified NFT and sorted by date. This API is deprecated in favor of Search Activities

get/v0.1/activities/byItem

Query parameters

typeActivityType[] required

Activity type

itemIdstring required

Item Id, has format ETHEREUM:${token}:${tokenId}

Example:ETHEREUM:0xb66a603f4cfe17e3d27b87a8bfcad319856518b8:32292934596187112148346015918544186536963932779440027682601542850818403729410

Item Id, has format ETHEREUM:${token}:${tokenId}

bidCurrenciesCurrencyId[]

Currency for BID and CANCEL_BID activity types

[
  "ETHEREUM:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"
]
continuationstring

Continuation token from the previous response

cursorstring

Combined continuation token from the previous response

sizeinteger

The number of items to return

sort'LATEST_FIRST' | 'EARLIEST_FIRST'

Sorting by data update time

Sorting by data update time

Response

OK

continuationstring

Continuation token to paginate activities search result

cursorstring

Combined continuation token to paginate activities search result

Example response

{
  "activities": [
    {
      "id": "ETHEREUM:${id}",
      "owner": "ETHEREUM:0x4765273c477c2dc484da4f1984639e943adccfeb",
      "contract": "ETHEREUM:0xd07dc4262bcdbf85190c01c996b4c06a461d2430",
      "collection": "ETHEREUM:0xb66a603f4cfe17e3d27b87a8bfcad319856518b8",
      "itemId": "ETHEREUM:0xb66a603f4cfe17e3d27b87a8bfcad319856518b8:32292934596187112148346015918544186536963932779440027682601542850818403729410",
      "mintPayment": {
        "type": {
          "blockchain": "ETHEREUM",
          "contract": "ETHEREUM:0xd07dc4262bcdbf85190c01c996b4c06a461d2430"
        }
      }
    }
  ]
}