v1

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

Get users Activities

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

post/v0.1/activities/byUsers

Request body

typesUserActivityType[] required

Activity type

usersUnionAddress[] required

List of the user id

bidCurrenciesCurrencyId[]

Currency for BID and CANCEL_BID activity types

blockchainsBlockchain[]
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

Example request

{
  "users": [
    "ETHEREUM:0x4765273c477c2dc484da4f1984639e943adccfeb"
  ],
  "bidCurrencies": [
    "ETHEREUM:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"
  ],
  "blockchains": [
    "ETHEREUM"
  ]
}

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