Required Datapoints
- Search Tool Integration: Google Search Console, Google Ads, SEO software.
- Branded Keywords List: Variants of your company and product name.
- Search Query Volume: Monthly or weekly average.
- Geography or Segment Filters (optional).
Branded Search Volume measures the number of search queries containing your company or product name over a defined period. It helps assess brand awareness and intent-to-engage from both new and returning audiences.
Branded Search Volume is a demand signal that reflects how often users are searching for your brand or products directly — a reliable indicator of brand recognition, buyer intent, and awareness effectiveness.
The relevance and interpretation of this metric shift depending on the model or product:
An upward trend in branded search suggests rising curiosity, familiarity, and demand. A plateau or drop may indicate brand fatigue or weakened awareness.
Segment by region, campaign, or product line to trace the roots of interest and optimize search strategy.
Branded Search Volume informs:
These are the main factors that directly impact the metric. Understanding these lets you know what levers you can pull to improve the outcome
Actionable ideas to optimize this KPI, from fast, low-effort wins to strategic initiatives that drive measurable impact.
Activities commonly tied to improving or operationalizing this KPI.
| Activity | Description |
|---|---|
| Brand Campaigns | Brand Campaigns focuses on planning, executing, and optimizing targeted brand initiatives to increase market awareness, shape perception, and drive engagement with the company’s products or solutions. It coordinates execution across touchpoints so teams can move users or accounts toward the target outcome. Relevant KPIs include Brand Awareness Lift and Branded Search Volume. |
| SEO Strategy | SEO Strategy requires thorough research, strategic prioritization, and continuous optimization of website and content initiatives. It gives teams a clear plan for where to focus, how to sequence work, and what to measure. Relevant KPIs include Branded Search Volume and New Visitors. |
| Search Trend Monitoring | Search Trend Monitoring involves systematically tracking, interpreting, and applying insights from user search behaviors across digital platforms. It turns signals into decisions, interventions, and measurable follow-up. Relevant KPIs include Branded Search Volume. |
| Awareness Boosters | Awareness Boosters focuses on executing targeted initiatives to boost market and customer awareness for a product or solution. It helps teams translate strategy into repeatable execution. Relevant KPIs include Branded Search Volume. |
For April:
This KPI is associated with the following stages in the AAARRR (Pirate Metrics) funnel:
This KPI is classified as a lagging Indicator. It reflects the results of past actions or behaviors and is used to validate performance or assess the impact of previous strategies.
This role is directly accountable for the KPI and is expected to drive progress and decisions around it.
These roles contribute directly to performance and typically partner on execution, reporting, or optimization.
These leading indicators influence this KPI and act as early signals that forecast future changes in this KPI.
These lagging indicators confirm, quantify, or amplify this KPI and help explain the broader business impact on this KPI after the fact.
How this KPI is structured in Cube.js, including its key measures, dimensions, and calculation logic for consistent reporting.
cube('BrandedSearchVolume', { sql: `SELECT * FROM branded_search_data`,
measures: { searchQueryVolume: { sql: `search_query_volume`, type: 'sum', title: 'Search Query Volume', description: 'Total number of search queries containing branded keywords over a defined period.' } },
dimensions: { id: { sql: `id`, type: 'string', primaryKey: true, title: 'ID', description: 'Unique identifier for each search query record.' },
searchToolIntegration: { sql: `search_tool_integration`, type: 'string', title: 'Search Tool Integration', description: 'The search tool used for the query, e.g., Google Search Console, Google Ads, SEO software.' },
brandedKeywords: { sql: `branded_keywords`, type: 'string', title: 'Branded Keywords', description: 'Variants of the company and product name used in search queries.' },
geography: { sql: `geography`, type: 'string', title: 'Geography', description: 'Geographical location of the search query, if available.' },
queryDate: { sql: `query_date`, type: 'time', title: 'Query Date', description: 'Date when the search query was made.' } }});Note: This is a reference implementation and should be used as a starting point. You’ll need to adapt it to match your own data model and schema