> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Method name: queryActivityCounters() # Method package: wixActivityCountersV2 # Method menu location: wixActivityCountersV2 --> activityCounters --> queryActivityCounters # Method Link: https://dev.wix.com/docs/velo/apis/wix-activity-counters-v2/activity-counters/query-activity-counters.md # Method Description: Returns up to 100 public activity counters for the provided filter and paging. Only counters that are marked as public are returned. Supported fields for filtering: - `memberId` Supported operations: Comparison: - $eq - $ne - $in Logical: - $and - $not - $or |PROPERTY |SUPPORTED FILTERS & SORTING |:---:|:---:| |`memberId`|[`eq()`](/activity-counters-query-builder/eq),[`ne()`](/activity-counters-query-builder/ne),[`in()`](/activity-counters-query-builder/in)| # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## queryActivityCounters example ```javascript import { activityCounters } from 'wix-activity-counters.v2'; async function queryActivityCounters() { const { items } = activityCounters.queryActivityCounters().find(); } ``` ## queryActivityCounters example for exporting from backend code ```javascript import { activityCounters } from 'wix-activity-counters.v2'; import { webMethod, Permissions } from 'wix-web-module'; export const queryActivityCounters = webMethod( Permissions.Anyone, async (options) => { try { const result = await activityCounters.queryActivityCounters(options); return result; } catch (error) { console.error(error); // Handle the error } } ); ``` ---