v1

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

Get user Activities

Returns user's Activities (like transfers, mints, sells etc) sorted by date. This API is deprecated in favor of Search Activities

get/v0.1/activities/byUser

Query parameters

typeUserActivityType[] required

Activity type

blockchainsBlockchain[]
[
  "ETHEREUM"
]
userUnionAddress[] required

Addresses of the users

[
  "ETHEREUM:0x4765273c477c2dc484da4f1984639e943adccfeb"
]
bidCurrenciesCurrencyId[]

Currency for BID and CANCEL_BID activity types

[
  "ETHEREUM:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"
]
fromstring date-time

Lower time border of data

tostring date-time

Upper time border of data

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"
        }
      }
    }
  ]
}