Pendo AnalyticsJune 20266 min read

What your Pendo click data tells you and how to use the Aggregation API.

Click events are Pendo's most granular data but raw counts without context are just noise. As well as building dashboards in Pendo and downloading CSV files with all sorts of events and click data, you can also use the integration API key to produce your own customised dashboard with live data.

Text byVictor BlancoPendo consultant

Click events are Pendo's most granular data, and the easiest to misread. Every tagged feature produces a stream of events with a visitor, an account, and a timestamp attached, but a raw count on its own tells you very little. The value comes from how you slice it.

01

What click data actually tells you

Sliced by feature, click data shows you which parts of the product carry real usage and which are ignored. Sliced by visitor and account, it separates one power user hammering a button from genuine adoption across a customer. Sliced over time, it shows whether a release, a guide, or an onboarding change actually moved behaviour, not just whether totals went up.

feature launchDay 1Day 30
Raw clicks Unique visitors
Illustrative: after a launch, raw clicks double while unique visitors barely move. Totals alone overstate adoption; the same people are clicking more.
02

Why raw counts mislead

Three things distort raw click counts in almost every Pendo account. Internal users, your own team testing and demoing, can be a third of all events if they aren't segmented out. Power users concentrate volume: a handful of visitors often produce most of a feature's clicks, so a rising total can mean deeper usage by the same few people, not wider adoption. And repeat interactions inflate everything: a user who clicks an export button thirty times in one session is one unit of adoption, not thirty.

The fix is to stop reporting totals and start reporting ratios: unique visitors per feature, the share of accounts that used a feature at least once, and how usage persists week over week. Those are exactly the kinds of questions the Aggregation API answers well.

A user who clicks an export button thirty times in one session is one unit of adoption, not thirty.

03

Beyond dashboards and CSV exports

Pendo's built-in dashboards and CSV exports cover the common questions, but they are snapshots: someone has to run the export, and the answer is stale the moment it lands in a spreadsheet. For recurring reporting, like a weekly adoption review, a client-facing usage report, or a wallboard, you want the data to come to you.

04

How the Aggregation API works

The Aggregation API gives you query access to the same event data that powers Pendo's own UI. You authenticate with an integration key and send a pipeline: a sequence of stages, similar to a database query, where each stage shapes the output of the previous one: select a source, filter it, group it, sort it.

Your product

Pendo agent captures clicks, page loads, guide events

Pendo cloud

Events stored against features, visitors and accounts

Aggregation API

Pipeline queries: filter, group, join, time series

Your dashboard

Live charts and reports, no manual exports

From event capture to a live custom report, the Aggregation API is the bridge.
POST /api/v1/aggregation: clicks by feature, last 30 days
POST https://app.eu.pendo.io/api/v1/aggregation
x-pendo-integration-key: <your-integration-key>

{ "response": { "mimeType": "application/json" },
  "request": {
    "name": "clicks-by-feature-last-30-days",
    "pipeline": [
      { "source": {
          "featureEvents": null,
          "timeSeries": {
            "period": "dayRange",
            "first": "date_add(now(), -30, \"days\")",
            "count": 30 }}},
      { "group": {
          "group": ["featureId"],
          "fields": { "clicks": { "sum": "numEvents" } }}},
      { "sort": ["-clicks"] }]}}

Reading it top to bottom: the source stage pulls feature click events day by day for the last 30 days, the group stage sums clicks per feature, and the sort stage ranks them. Swap the group key to visitorId or accountId and the same query answers a completely different question. From there the response is plain JSON. Feed it to any charting library and the report updates itself.

05

What the query doesn't show

The pipeline above is the easy part. Getting it into production is the rest: the integration key has read access to your entire subscription, so it has to be stored and rotated like any other secret and never shipped to the browser. Large accounts page their responses, so a naive query silently truncates. And a feature ID on its own means nothing until you join it to the visitor and account metadata that says who these people actually are.

Then it has to keep running: a scheduled refresh, somewhere to host it, a chart layer, and an alert for when a pipeline quietly starts returning zero because a tag broke upstream. None of it is especially hard, but it is the difference between a query you ran once and a report a team can trust every week. That part is what I build.

06

Metrics worth building

Once the pipeline is in place, these are the reports I build most often for clients. None of them are available as a single number in the standard dashboards:

  • Adoption rate: share of active accounts that used a feature at least once in the period. It's the honest version of 'is anyone using this?'
  • Stickiness: daily active users over monthly active users, per feature. It separates habits from one-off visits.
  • Time to first use: days from signup to first click on a key feature. This is the metric that tells you whether onboarding actually works.
  • Feature share: each feature's percentage of total engagement. It shows where your product's gravity really is.
07

A working example

The dashboard below is a working example of what this kind of reporting looks like when built directly on the Pendo Aggregation API. It pulls click events by feature, visitor, and account with a daily trend line, feature share breakdown, and a full event log. If you want this built for your product, connected to your live Pendo data, that's a service I offer.

Pendo Analytics

Want this dashboard connected to your Pendo data?

Customise your own data dashboard pulling data directly from Pendo

380
Total clicks
8
Features
8
Visitors
5
Accounts
Dashboard
Top feature
Clicks by feature
Top features by volume
Dashboard (106)Onboarding (81)Export (49)User (40)Settings (39)Help (29)
Daily trend
Click volume over 30 days
Feature share
Proportional breakdown
Top visitors
By total clicks
Recent events
380 events
FeatureVisitorAccountDateTime
User profileusr_b3t9macct_delta2026-06-1906:58:41
Dashboard viewusr_c1p5xacct_beta2026-06-1903:48:13
User profileusr_g2s7hacct_epsilon2026-06-1900:39:16
Onboarding checklistusr_b3t9macct_epsilon2026-06-1822:03:29
Settings panelusr_h9v4cacct_gamma2026-06-1820:51:30
Dashboard viewusr_b3t9macct_epsilon2026-06-1820:38:13
Help widgetusr_h9v4cacct_epsilon2026-06-1816:15:23
Export buttonusr_c1p5xacct_epsilon2026-06-1815:44:43
1 / 48
Filed under
Pendo analyticsClick eventsFeature adoptionProduct analyticsReporting dashboardPendo API

Ready to get more from Pendo?

Book a free 30-minute call and let's talk about how I can help get the most from your Pendo subscription.

We use cookies & Pendo to monitor traffic anonymously, improve experience, and understand usage.

Let's connect