v1

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

Get all Activities (for sync)

Returns all Activities in accordance with specified filters and sorted by db updated date. During internal updates (like migrations) Activities can be updated for technical reasons. In such case, date field won't be changed. If you want to store Activities in your own storage and keep it synced, use this method.

get/v0.1/activities/sync

Query parameters

blockchain'APTOS' | 'ETHEREUM' | 'POLYGON' | 'FLOW' | 'SOLANA' | 'IMMUTABLEX' | 'MANTLE' | 'ARBITRUM' | 'CHILIZ' | 'LIGHTLINK' | 'ZKSYNC' | 'ASTARZKEVM' | 'BASE' | 'RARI' | 'CELO' | 'FIEF' | 'XAI' | 'KROMA' | 'ZKLINK' | 'OASYS' | 'QUAI' | 'ECLIPSE' | 'SAAKURU' | 'OASIS' | 'PALM' | 'MATCH' | 'FIVIRE' | 'SEI' | 'CAMP' | 'LISK' | 'MOONBEAM' | 'ETHERLINK' | 'ZKCANDY' | 'ALEPHZERO' | 'BERACHAIN' | 'ABSTRACT' | 'SHAPE' | 'TELOS' | 'HEDERAEVM' | 'VICTION' | 'SETTLUS' | 'GOAT' | 'HYPEREVM' | 'CROSSFI' | 'MEGAETH' | 'MEGAETHTESTNET' | 'BASECAMP' | 'BASECAMPTESTNET' | 'SOMNIA' required
Example:ETHEREUM

Type of the blockchain network

continuationstring

Continuation token from the previous response

sizeinteger

The number of items to return

sort'DB_UPDATE_ASC' | 'DB_UPDATE_DESC'

Sorting by data base update time

type'ORDER' | 'NFT'

Filtering by activity type

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