v1

latestOpenAPI 3.0.3raw.githubusercontent.com2025-06-1883262329.3 KB
Search API

Search Activities

Advanced search returns Activities satisfying provided filter

post/v0.1/activities/search

Request body

sizeinteger required

Number of entities returned

cursorstring

Cursor token to paginate Activity search result

sort'LATEST' | 'EARLIEST'

Example request

{
  "filter": {
    "blockchains": [
      "ETHEREUM"
    ],
    "collections": [
      "ETHEREUM:0xb66a603f4cfe17e3d27b87a8bfcad319856518b8"
    ],
    "items": [
      "ETHEREUM:0xb66a603f4cfe17e3d27b87a8bfcad319856518b8:32292934596187112148346015918544186536963932779440027682601542850818403729410"
    ],
    "users": {
      "any": [
        "ETHEREUM:0x4765273c477c2dc484da4f1984639e943adccfeb"
      ],
      "from": [
        "ETHEREUM:0x4765273c477c2dc484da4f1984639e943adccfeb"
      ],
      "to": [
        "ETHEREUM:0x4765273c477c2dc484da4f1984639e943adccfeb"
      ]
    },
    "currencies": {
      "bid": [
        "ETHEREUM:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"
      ]
    }
  }
}

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