NFT Activities

Get user ActivitiesDeprecated

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

SecurityApiKeyAuth
Request
query Parameters
type
required
Array of strings (UserActivityType)

Activity type

Items Enum: "TRANSFER_FROM" "TRANSFER_TO" "MINT" "BURN" "MAKE_BID" "GET_BID" "LIST" "BUY" "SELL" "CANCEL_LIST" "CANCEL_BID" "BRIDGE_TO" "BRIDGE_FROM"
blockchains
Array of strings (Blockchain)
Items Enum: "APTOS" "ETHEREUM" "POLYGON" "FLOW" "TEZOS" "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"
Example: blockchains=ETHEREUM
user
required
Array of strings (UnionAddress)

Addresses of the users

Example: user=ETHEREUM:0x4765273c477c2dc484da4f1984639e943adccfeb
bidCurrencies
Array of strings (CurrencyId)

Currency for BID and CANCEL_BID activity types

Example: bidCurrencies=ETHEREUM:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
from
string <date-time>

Lower time border of data

to
string <date-time>

Upper time border of data

continuation
string

Continuation token from the previous response

cursor
string

Combined continuation token from the previous response

size
integer

The number of items to return

sort
string (ActivitySort)

Sorting by data update time

Enum: "LATEST_FIRST" "EARLIEST_FIRST"
Responses
200

OK

400

Bad Request

500

Internal Server Error

get/v0.1/activities/byUser
Response samples
application/json
{
  • "continuation": "string",
  • "cursor": "string",
  • "activities": [ ]
}

Get users ActivitiesDeprecated

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

SecurityApiKeyAuth
Request
Request Body schema: application/json
required
types
required
Array of strings (UserActivityType)

Activity type

Items Enum: "TRANSFER_FROM" "TRANSFER_TO" "MINT" "BURN" "MAKE_BID" "GET_BID" "LIST" "BUY" "SELL" "CANCEL_LIST" "CANCEL_BID" "BRIDGE_TO" "BRIDGE_FROM"
users
required
Array of strings (UnionAddress)

List of the user id

bidCurrencies
Array of strings (CurrencyId)

Currency for BID and CANCEL_BID activity types

blockchains
Array of strings (Blockchain)
Items Enum: "APTOS" "ETHEREUM" "POLYGON" "FLOW" "TEZOS" "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"
from
string <date-time>

Lower time border of data

to
string <date-time>

Upper time border of data

continuation
string

Continuation token from the previous response

cursor
string

Combined continuation token from the previous response

size
integer

The number of items to return

sort
string (ActivitySort)

Sorting by data update time

Enum: "LATEST_FIRST" "EARLIEST_FIRST"
Responses
200

OK

400

Bad Request

500

Internal Server Error

post/v0.1/activities/byUsers
Request samples
application/json
{
  • "types": [
    ],
  • "users": [
    ],
  • "bidCurrencies": [
    ],
  • "blockchains": [
    ],
  • "from": "2019-08-24T14:15:22Z",
  • "to": "2019-08-24T14:15:22Z",
  • "continuation": "string",
  • "cursor": "string",
  • "size": 0,
  • "sort": "LATEST_FIRST"
}
Response samples
application/json
{
  • "continuation": "string",
  • "cursor": "string",
  • "activities": [ ]
}

Get NFT ActivitiesDeprecated

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

SecurityApiKeyAuth
Request
query Parameters
type
required
Array of strings (ActivityType)

Activity type

Items Enum: "TRANSFER" "MINT" "BURN" "BID" "LIST" "SELL" "CANCEL_LIST" "CANCEL_BID" "BRIDGE_TO" "BRIDGE_FROM"
itemId
required
string (ItemId)

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

Example: itemId=ETHEREUM:0xb66a603f4cfe17e3d27b87a8bfcad319856518b8:32292934596187112148346015918544186536963932779440027682601542850818403729410
bidCurrencies
Array of strings (CurrencyId)

Currency for BID and CANCEL_BID activity types

Example: bidCurrencies=ETHEREUM:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
continuation
string

Continuation token from the previous response

cursor
string

Combined continuation token from the previous response

size
integer

The number of items to return

sort
string (ActivitySort)

Sorting by data update time

Enum: "LATEST_FIRST" "EARLIEST_FIRST"
Responses
200

OK

400

Bad Request

500

Internal Server Error

get/v0.1/activities/byItem
Response samples
application/json
{
  • "continuation": "string",
  • "cursor": "string",
  • "activities": [ ]
}

Get NFT Collection ActivitiesDeprecated

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

SecurityApiKeyAuth
Request
query Parameters
type
required
Array of strings (ActivityType)

Activity type

Items Enum: "TRANSFER" "MINT" "BURN" "BID" "LIST" "SELL" "CANCEL_LIST" "CANCEL_BID" "BRIDGE_TO" "BRIDGE_FROM"
collection
required
Array of strings (ContractAddress)

Address of the collection

Example: collection=ETHEREUM:0xd07dc4262bcdbf85190c01c996b4c06a461d2430
bidCurrencies
Array of strings (CurrencyId)

Currency for BID and CANCEL_BID activity types

Example: bidCurrencies=ETHEREUM:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
continuation
string

Continuation token from the previous response

cursor
string

Combined continuation token from the previous response

size
integer

The number of items to return

sort
string (ActivitySort)

Sorting by data update time

Enum: "LATEST_FIRST" "EARLIEST_FIRST"
Responses
200

OK

400

Bad Request

500

Internal Server Error

get/v0.1/activities/byCollection
Response samples
application/json
{
  • "continuation": "string",
  • "cursor": "string",
  • "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.

SecurityApiKeyAuth
Request
query Parameters
blockchain
required
string (Blockchain)

Type of the blockchain network

Enum: "APTOS" "ETHEREUM" "POLYGON" "FLOW" "TEZOS" "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"
Example: blockchain=ETHEREUM
continuation
string

Continuation token from the previous response

size
integer

The number of items to return

sort
string (SyncSort)

Sorting by data base update time

Enum: "DB_UPDATE_ASC" "DB_UPDATE_DESC"
type
string (SyncType)

Filtering by activity type

Enum: "ORDER" "NFT"
Responses
200

OK

400

Bad Request

500

Internal Server Error

get/v0.1/activities/sync
Response samples
application/json
{
  • "continuation": "string",
  • "cursor": "string",
  • "activities": [ ]
}

Get all ActivitiesDeprecated

Returns all Activities in accordance with specified filters and sorted by date. This API is deprecated in favor of Search Activities

SecurityApiKeyAuth
Request
query Parameters
blockchains
Array of strings (Blockchain)

Names of the blockchain networks. If no one specified, data from all blockchains will be returned

Items Enum: "APTOS" "ETHEREUM" "POLYGON" "FLOW" "TEZOS" "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"
Example: blockchains=ETHEREUM
type
required
Array of strings (ActivityType)

Activity type

Items Enum: "TRANSFER" "MINT" "BURN" "BID" "LIST" "SELL" "CANCEL_LIST" "CANCEL_BID" "BRIDGE_TO" "BRIDGE_FROM"
bidCurrencies
Array of strings (CurrencyId)

Currency for BID and CANCEL_BID activity types

Example: bidCurrencies=ETHEREUM:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
continuation
string

Continuation token from the previous response

cursor
string

Combined continuation token from the previous response

size
integer <int32>

The number of items to return

sort
string (ActivitySort)

Sorting by data update time

Enum: "LATEST_FIRST" "EARLIEST_FIRST"
Responses
200

OK

400

Bad Request

500

Internal Server Error

get/v0.1/activities/all
Response samples
application/json
{
  • "continuation": "string",
  • "cursor": "string",
  • "activities": [ ]
}