---
title: "Get all Activities (for sync)"
method: GET
path: "/v0.1/activities/sync"
tags: ["NFT Activities"]
---

# Get all Activities (for sync)

`GET /v0.1/activities/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.

## 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
- `continuation` string
- `size` integer
- `sort` 'DB_UPDATE_ASC' | 'DB_UPDATE_DESC'
- `type` 'ORDER' | 'NFT'

## Response `200`

OK

- Activities
  - `continuation` string — Continuation token to paginate activities search result
  - `cursor` string — Combined continuation token to paginate activities search result
  - `activities` Activity[], required — List of found activities
    - union
      - object
        - `id` string, required
        - `date` string, date-time, required
        - `lastUpdatedAt` string, date-time
        - `cursor` string
        - `reverted` boolean
        - `version` integer
        - `@type` 'MINT', required
        - `owner` string, required — Blockchain address in Union format `${blockchainGroup}:${token}`
        - `contract` string — Blockchain contract address in Union format `ETHEREUM:${token}`
        - `collection` string — Collection id
        - `tokenId` string
        - `itemId` string — Item Id, has format `ETHEREUM:${token}:${tokenId}`
        - `value` string, required
        - `mintPrice` string
        - `mintPayment` Asset
          - `type` union, required
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
          - `value` string, required
        - `mintPriceUsd` string
        - `transactionHash` string, required
        - `blockchainInfo` ActivityBlockchainInfo
          - `transactionHash` string, required
          - `blockHash` string, required
          - `blockNumber` integer, required
          - `logIndex` integer, required
      - object
        - `id` string, required
        - `date` string, date-time, required
        - `lastUpdatedAt` string, date-time
        - `cursor` string
        - `reverted` boolean
        - `version` integer
        - `@type` 'BURN', required
        - `owner` string, required — Blockchain address in Union format `${blockchainGroup}:${token}`
        - `contract` string — Blockchain contract address in Union format `ETHEREUM:${token}`
        - `collection` string — Collection id
        - `tokenId` string
        - `itemId` string — Item Id, has format `ETHEREUM:${token}:${tokenId}`
        - `value` string, required
        - `transactionHash` string, required
        - `blockchainInfo` ActivityBlockchainInfo
          - `transactionHash` string, required
          - `blockHash` string, required
          - `blockNumber` integer, required
          - `logIndex` integer, required
      - object
        - `id` string, required
        - `date` string, date-time, required
        - `lastUpdatedAt` string, date-time
        - `cursor` string
        - `reverted` boolean
        - `version` integer
        - `@type` 'TRANSFER', required
        - `from` string, required — Blockchain address in Union format `${blockchainGroup}:${token}`
        - `owner` string, required — Blockchain address in Union format `${blockchainGroup}:${token}`
        - `contract` string — Blockchain contract address in Union format `ETHEREUM:${token}`
        - `collection` string — Collection id
        - `tokenId` string
        - `itemId` string — Item Id, has format `ETHEREUM:${token}:${tokenId}`
        - `value` string, required
        - `purchase` boolean
        - `transactionHash` string, required
        - `blockchainInfo` ActivityBlockchainInfo
          - `transactionHash` string, required
          - `blockHash` string, required
          - `blockNumber` integer, required
          - `logIndex` integer, required
      - object
        - `id` string, required
        - `date` string, date-time, required
        - `lastUpdatedAt` string, date-time
        - `cursor` string
        - `reverted` boolean
        - `version` integer
        - `@type` 'SEND_TO_CHAIN', required
        - `owner` string, required — Blockchain address in Union format `${blockchainGroup}:${token}`
        - `to` string, required
        - `chainId` string, required
        - `contract` string — Blockchain contract address in Union format `ETHEREUM:${token}`
        - `collection` string — Collection id
        - `itemId` string, required — Item Id, has format `ETHEREUM:${token}:${tokenId}`
        - `value` string, required
        - `transactionHash` string, required
        - `blockchainInfo` ActivityBlockchainInfo
          - `transactionHash` string, required
          - `blockHash` string, required
          - `blockNumber` integer, required
          - `logIndex` integer, required
      - object
        - `id` string, required
        - `date` string, date-time, required
        - `lastUpdatedAt` string, date-time
        - `cursor` string
        - `reverted` boolean
        - `version` integer
        - `@type` 'RECEIVE_FROM_CHAIN', required
        - `owner` string, required — Blockchain address in Union format `${blockchainGroup}:${token}`
        - `from` string, required
        - `chainId` string, required
        - `contract` string — Blockchain contract address in Union format `ETHEREUM:${token}`
        - `collection` string — Collection id
        - `itemId` string, required — Item Id, has format `ETHEREUM:${token}:${tokenId}`
        - `value` string, required
        - `transactionHash` string, required
        - `blockchainInfo` ActivityBlockchainInfo
          - `transactionHash` string, required
          - `blockHash` string, required
          - `blockNumber` integer, required
          - `logIndex` integer, required
      - object
        - `@type` 'SWAP'
        - `left` OrderActivityMatchSide, required
          - `maker` string, required — Blockchain address in Union format `${blockchainGroup}:${token}`
          - `hash` string
          - `asset` Asset, required
            - `type` union, required
              - …
            - `value` string, required
        - `right` OrderActivityMatchSide, required
          - `maker` string, required — Blockchain address in Union format `${blockchainGroup}:${token}`
          - `hash` string
          - `asset` Asset, required
            - `type` union, required
              - …
            - `value` string, required
      - object
        - `@type` 'SELL'
        - `nft` Asset, required
          - `type` union, required
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
          - `value` string, required
        - `payment` Asset, required
          - `type` union, required
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
          - `value` string, required
        - `buyer` string, required — Blockchain address in Union format `${blockchainGroup}:${token}`
        - `seller` string, required — Blockchain address in Union format `${blockchainGroup}:${token}`
        - `buyerOrderHash` string
        - `sellerOrderHash` string
        - `price` string, required
        - `priceUsd` string
        - `amountUsd` string
        - `type` 'SELL' | 'ACCEPT_BID', required
        - `sellMarketplaceMarker` string
        - `buyMarketplaceMarker` string
      - object
        - `id` string, required
        - `date` string, date-time, required
        - `lastUpdatedAt` string, date-time
        - `cursor` string
        - `reverted` boolean
        - `version` integer
        - `@type` 'BID', required
        - `orderId` string
        - `hash` string, required
        - `maker` string, required — Blockchain address in Union format `${blockchainGroup}:${token}`
        - `make` Asset, required
          - `type` union, required
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
          - `value` string, required
        - `take` Asset, required
          - `type` union, required
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
          - `value` string, required
        - `price` string, required
        - `priceUsd` string
        - `source` 'RARIBLE' | 'OPEN_SEA' | 'CRYPTO_PUNKS' | 'IMMUTABLEX' | 'HEN' | 'OBJKT' | 'X2Y2' | 'LOOKSRARE' | 'SUDOSWAP' | 'TEIA' | 'VERSUM' | 'FXHASH' | 'BLUR' | 'TOPAZ'
        - `marketplaceMarker` string
      - object
        - `id` string, required
        - `date` string, date-time, required
        - `lastUpdatedAt` string, date-time
        - `cursor` string
        - `reverted` boolean
        - `version` integer
        - `@type` 'LIST', required
        - `orderId` string
        - `hash` string, required
        - `maker` string, required — Blockchain address in Union format `${blockchainGroup}:${token}`
        - `make` Asset, required
          - `type` union, required
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
          - `value` string, required
        - `take` Asset, required
          - `type` union, required
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
            - object
              - …
          - `value` string, required
        - `price` string, required
        - `priceUsd` string
        - `source` 'RARIBLE' | 'OPEN_SEA' | 'CRYPTO_PUNKS' | 'IMMUTABLEX' | 'HEN' | 'OBJKT' | 'X2Y2' | 'LOOKSRARE' | 'SUDOSWAP' | 'TEIA' | 'VERSUM' | 'FXHASH' | 'BLUR' | 'TOPAZ'
      - object
        - `id` string, required
        - `date` string, date-time, required
        - `lastUpdatedAt` string, date-time
        - `cursor` string
        - `reverted` boolean
        - `version` integer
        - `@type` 'CANCEL_BID', required
        - `orderId` string
        - `hash` string, required
        - `maker` string, required — Blockchain address in Union format `${blockchainGroup}:${token}`
        - `make` union, required
          - object
            - `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
            - `contract` string — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `@type` 'CURRENCY_NATIVE', required
          - object
            - `@type` 'CURRENCY_TOKEN', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
          - object
            - `@type` 'NFT', required
            - `collectionId` string, required — Collection id
            - `itemId` string, required — Item Id, has format `ETHEREUM:${token}:${tokenId}`
            - `standard` 'SINGLE' | 'MULTIPLE'
          - object
            - `@type` 'NFT_OF_COLLECTION', required
            - `collectionId` string, required — Collection id
          - object
            - `@type` 'FLOW_NFT', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
            - `tokenId` string, required
          - object
            - `@type` 'FLOW_FT', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
          - object
            - `@type` 'ETH', required
            - `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'
          - object
            - `@type` 'ERC20', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
          - object
            - `@type` 'ERC721', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
            - `tokenId` string, required
          - object
            - `@type` 'ERC721_Lazy', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
            - `tokenId` string, required
            - `uri` string, required
            - `creators` Creator[], required — Creators of the target item
              - …
            - `royalties` Royalty[], required
              - …
            - `signatures` string[], required
          - object
            - `@type` 'ERC1155', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
            - `tokenId` string, required
          - object
            - `@type` 'ERC1155_Lazy', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
            - `tokenId` string, required
            - `uri` string, required
            - `supply` string, required
            - `creators` Creator[], required — Creators of the target item
              - …
            - `royalties` Royalty[], required
              - …
            - `signatures` string[], required
          - object
            - `@type` 'CRYPTO_PUNKS', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
            - `tokenId` integer, required
          - object
            - `@type` 'GEN_ART', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
          - object
            - `@type` 'COLLECTION', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
          - object
            - `@type` 'SOLANA_NFT', required
            - `contract` string — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
            - `itemId` string, required — Item Id, has format `ETHEREUM:${token}:${tokenId}`
          - object
            - `@type` 'SOLANA_FT', required
            - `address` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
          - object
            - `@type` 'SOLANA_SOL', required
        - `take` union, required
          - object
            - `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
            - `contract` string — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `@type` 'CURRENCY_NATIVE', required
          - object
            - `@type` 'CURRENCY_TOKEN', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
          - object
            - `@type` 'NFT', required
            - `collectionId` string, required — Collection id
            - `itemId` string, required — Item Id, has format `ETHEREUM:${token}:${tokenId}`
            - `standard` 'SINGLE' | 'MULTIPLE'
          - object
            - `@type` 'NFT_OF_COLLECTION', required
            - `collectionId` string, required — Collection id
          - object
            - `@type` 'FLOW_NFT', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
            - `tokenId` string, required
          - object
            - `@type` 'FLOW_FT', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
          - object
            - `@type` 'ETH', required
            - `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'
          - object
            - `@type` 'ERC20', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
          - object
            - `@type` 'ERC721', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
            - `tokenId` string, required
          - object
            - `@type` 'ERC721_Lazy', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
            - `tokenId` string, required
            - `uri` string, required
            - `creators` Creator[], required — Creators of the target item
              - …
            - `royalties` Royalty[], required
              - …
            - `signatures` string[], required
          - object
            - `@type` 'ERC1155', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
            - `tokenId` string, required
          - object
            - `@type` 'ERC1155_Lazy', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
            - `tokenId` string, required
            - `uri` string, required
            - `supply` string, required
            - `creators` Creator[], required — Creators of the target item
              - …
            - `royalties` Royalty[], required
              - …
            - `signatures` string[], required
          - object
            - `@type` 'CRYPTO_PUNKS', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
            - `tokenId` integer, required
          - object
            - `@type` 'GEN_ART', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
          - object
            - `@type` 'COLLECTION', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
          - object
            - `@type` 'SOLANA_NFT', required
            - `contract` string — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
            - `itemId` string, required — Item Id, has format `ETHEREUM:${token}:${tokenId}`
          - object
            - `@type` 'SOLANA_FT', required
            - `address` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
          - object
            - `@type` 'SOLANA_SOL', required
        - `source` 'RARIBLE' | 'OPEN_SEA' | 'CRYPTO_PUNKS' | 'IMMUTABLEX' | 'HEN' | 'OBJKT' | 'X2Y2' | 'LOOKSRARE' | 'SUDOSWAP' | 'TEIA' | 'VERSUM' | 'FXHASH' | 'BLUR' | 'TOPAZ'
        - `transactionHash` string, required
        - `blockchainInfo` ActivityBlockchainInfo
          - `transactionHash` string, required
          - `blockHash` string, required
          - `blockNumber` integer, required
          - `logIndex` integer, required
      - object
        - `id` string, required
        - `date` string, date-time, required
        - `lastUpdatedAt` string, date-time
        - `cursor` string
        - `reverted` boolean
        - `version` integer
        - `@type` 'CANCEL_LIST', required
        - `orderId` string
        - `hash` string, required
        - `maker` string, required — Blockchain address in Union format `${blockchainGroup}:${token}`
        - `make` union, required
          - object
            - `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
            - `contract` string — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `@type` 'CURRENCY_NATIVE', required
          - object
            - `@type` 'CURRENCY_TOKEN', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
          - object
            - `@type` 'NFT', required
            - `collectionId` string, required — Collection id
            - `itemId` string, required — Item Id, has format `ETHEREUM:${token}:${tokenId}`
            - `standard` 'SINGLE' | 'MULTIPLE'
          - object
            - `@type` 'NFT_OF_COLLECTION', required
            - `collectionId` string, required — Collection id
          - object
            - `@type` 'FLOW_NFT', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
            - `tokenId` string, required
          - object
            - `@type` 'FLOW_FT', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
          - object
            - `@type` 'ETH', required
            - `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'
          - object
            - `@type` 'ERC20', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
          - object
            - `@type` 'ERC721', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
            - `tokenId` string, required
          - object
            - `@type` 'ERC721_Lazy', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
            - `tokenId` string, required
            - `uri` string, required
            - `creators` Creator[], required — Creators of the target item
              - …
            - `royalties` Royalty[], required
              - …
            - `signatures` string[], required
          - object
            - `@type` 'ERC1155', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
            - `tokenId` string, required
          - object
            - `@type` 'ERC1155_Lazy', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
            - `tokenId` string, required
            - `uri` string, required
            - `supply` string, required
            - `creators` Creator[], required — Creators of the target item
              - …
            - `royalties` Royalty[], required
              - …
            - `signatures` string[], required
          - object
            - `@type` 'CRYPTO_PUNKS', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
            - `tokenId` integer, required
          - object
            - `@type` 'GEN_ART', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
          - object
            - `@type` 'COLLECTION', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
          - object
            - `@type` 'SOLANA_NFT', required
            - `contract` string — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
            - `itemId` string, required — Item Id, has format `ETHEREUM:${token}:${tokenId}`
          - object
            - `@type` 'SOLANA_FT', required
            - `address` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
          - object
            - `@type` 'SOLANA_SOL', required
        - `take` union, required
          - object
            - `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
            - `contract` string — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `@type` 'CURRENCY_NATIVE', required
          - object
            - `@type` 'CURRENCY_TOKEN', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
          - object
            - `@type` 'NFT', required
            - `collectionId` string, required — Collection id
            - `itemId` string, required — Item Id, has format `ETHEREUM:${token}:${tokenId}`
            - `standard` 'SINGLE' | 'MULTIPLE'
          - object
            - `@type` 'NFT_OF_COLLECTION', required
            - `collectionId` string, required — Collection id
          - object
            - `@type` 'FLOW_NFT', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
            - `tokenId` string, required
          - object
            - `@type` 'FLOW_FT', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
          - object
            - `@type` 'ETH', required
            - `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'
          - object
            - `@type` 'ERC20', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
          - object
            - `@type` 'ERC721', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
            - `tokenId` string, required
          - object
            - `@type` 'ERC721_Lazy', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
            - `tokenId` string, required
            - `uri` string, required
            - `creators` Creator[], required — Creators of the target item
              - …
            - `royalties` Royalty[], required
              - …
            - `signatures` string[], required
          - object
            - `@type` 'ERC1155', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
            - `tokenId` string, required
          - object
            - `@type` 'ERC1155_Lazy', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
            - `tokenId` string, required
            - `uri` string, required
            - `supply` string, required
            - `creators` Creator[], required — Creators of the target item
              - …
            - `royalties` Royalty[], required
              - …
            - `signatures` string[], required
          - object
            - `@type` 'CRYPTO_PUNKS', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
            - `tokenId` integer, required
          - object
            - `@type` 'GEN_ART', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
          - object
            - `@type` 'COLLECTION', required
            - `contract` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
          - object
            - `@type` 'SOLANA_NFT', required
            - `contract` string — Blockchain contract address in Union format `ETHEREUM:${token}`
            - `collection` string — Collection id
            - `itemId` string, required — Item Id, has format `ETHEREUM:${token}:${tokenId}`
          - object
            - `@type` 'SOLANA_FT', required
            - `address` string, required — Blockchain contract address in Union format `ETHEREUM:${token}`
          - object
            - `@type` 'SOLANA_SOL', required
        - `source` 'RARIBLE' | 'OPEN_SEA' | 'CRYPTO_PUNKS' | 'IMMUTABLEX' | 'HEN' | 'OBJKT' | 'X2Y2' | 'LOOKSRARE' | 'SUDOSWAP' | 'TEIA' | 'VERSUM' | 'FXHASH' | 'BLUR' | 'TOPAZ'
        - `transactionHash` string, required
        - `blockchainInfo` ActivityBlockchainInfo
          - `transactionHash` string, required
          - `blockHash` string, required
          - `blockNumber` integer, required
          - `logIndex` integer, required
      - object
        - `id` string, required
        - `date` string, date-time, required
        - `lastUpdatedAt` string, date-time
        - `cursor` string
        - `reverted` boolean
        - `version` integer
        - `@type` 'L2_DEPOSIT', required
        - `user` string, required — Blockchain address in Union format `${blockchainGroup}:${token}`
        - `status` string, required
        - `itemId` string, required — Item Id, has format `ETHEREUM:${token}:${tokenId}`
        - `collection` string — Collection id
        - `value` string
      - object
        - `id` string, required
        - `date` string, date-time, required
        - `lastUpdatedAt` string, date-time
        - `cursor` string
        - `reverted` boolean
        - `version` integer
        - `@type` 'L2_WITHDRAWAL', required
        - `user` string, required — Blockchain address in Union format `${blockchainGroup}:${token}`
        - `status` string, required
        - `itemId` string, required — Item Id, has format `ETHEREUM:${token}:${tokenId}`
        - `collection` string — Collection id
        - `value` string

## Other responses

- `400` — Bad Request
- `500` — Internal Server Error

---

[API](https://skmtc.net/rarible/apis/openapi-definition.md) · [All operations](https://skmtc.net/rarible/apis/openapi-definition/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/rarible/openapi-definition/versions/5d2651b9411d/schema)
