Audience Builder

Build targeted prospect lists from 254M+ person records

The Audience Builder lets you search, filter, and export prospect lists drawn from ClearView's identity graph of 254M+ records. Combine demographic, geographic, professional, and firmographic filters to build laser-targeted audiences for outbound campaigns, ad targeting, and ABM programs – all without leaving the dashboard.

How It Works

Open the Audience Builder from the left sidebar. Add one or more filters to narrow the database down to your target audience. ClearView displays a real-time result count as you adjust filters so you can refine before committing to an export. When you are satisfied with the audience, preview a sample of matching records in the dashboard or export the full list as CSV or XLSX.

Saved audiences store your filter combinations so you can re-run them later to pick up new matches without rebuilding from scratch. Each export counts against your monthly plan limit based on the number of records exported.

Templates

Don't want to start from scratch? ClearView ships curated templates — pre-built filter combinations for common targeting use cases. Pick a template, refine the filters if needed, and export.

Templates surface in three places in the Audience Builder:

  • Featured cards on the empty state, when no filters are picked yet — one click into a meaningful audience
  • “Load template” modal from the filter card header — browse all templates by category
  • Inline next-filter hint when you have one filter set — suggests filters that combine well with what you already have

Categories

B2B Sales

Tech CXOs in CA, Sales VPs in Finance, Marketing Directors at Enterprise, Mid-market Engineering Leaders, Female Tech Leaders

Wealth & Financial

HNW Pre-Retirees, $200k+ Earners in CA, Married High-Earners 35–44

Real Estate

Wealthy Families in Big Markets, Empty Nesters with Wealth

Recruiting

Senior Engineers in NYC, Director-level Sales Talent

Healthcare

Healthcare CXOs, Hospital Directors

B2C / Consumer

Young Urban Professionals

Templates are starting points — load one, then add or remove filters before previewing or exporting. They are tuned to use the composite indexes on UniversalPerson, so loaded audiences typically return an exact count in under two seconds.

Available Filters

Combine any number of filters across four categories to define your audience. All filters are AND-joined – records must match every active filter.

Demographics

  • Age range (min / max)
  • Gender
  • Marital status
  • Homeowner status
  • Estimated net worth range
  • Estimated income range

Location

  • State
  • City
  • ZIP / postal code

Professional

  • Job title (keyword match)
  • Seniority level (C-Suite, VP, Director, Manager, etc.)
  • Department (Engineering, Marketing, Sales, Finance, etc.)

Company

  • Company name
  • Company domain
  • Employee count range
  • Estimated revenue range
  • Industry

Building an Audience

1

Open the Audience Builder

Navigate to Audience Builder in the left sidebar. You will see an empty filter panel and a result count of zero.

2

Add Filters

Click "Add Filter" and choose a category (Demographics, Location, Professional, or Company). Configure the filter values. The estimated result count updates in real-time as you add and adjust filters.

3

Preview Results

Click "Preview" to see a sample of matching records directly in the dashboard. The preview shows name, email, job title, company, and location for up to 25 records.

4

Export Your Audience

Click "Export" and choose CSV or XLSX format. The export includes all matching records up to the 25,000 record cap per export. Exported record count is deducted from your monthly plan limit.

5

Save for Later

Click "Save Audience" to store your filter combination. Saved audiences appear in the sidebar for quick access. Re-run them anytime to pick up new matches without rebuilding filters.

Preview & Export

Before exporting, use the in-dashboard preview to validate your audience. The preview shows a random sample of 25 matching records with key fields so you can confirm the filters are producing the right results.

FormatDescription
CSVComma-separated values file. Compatible with all spreadsheet and CRM import tools.
XLSXExcel workbook format. Supports column formatting and is ready to open in Excel or Google Sheets.

Plan Limits

Export limits are based on the total number of records exported per calendar month. Each individual export is capped at 25,000 records regardless of plan.

PlanMonthly Export Limit
FreeNot available
Starter5,000 records / month
Growth15,000 records / month
Pro25,000 records / month
Partner25,000 records / month

Saved Audiences

Save any filter combination as a named audience for quick re-use. Saved audiences appear in the Audience Builder sidebar and can be loaded with one click. This is especially useful for recurring exports – save your ICP filters once, then re-export monthly to catch new records that match.

ActionDescription
SaveStore the current filter combination with a name and optional description.
LoadRestore a saved filter combination into the Audience Builder. The result count updates immediately.
UpdateOverwrite a saved audience with the current filter combination.
DeletePermanently remove a saved audience. This does not affect previously exported data.

API Reference

Build and export audiences programmatically using the following API endpoints. All endpoints require a valid API key with write permissions.

Search Audience

POST /api/dashboard/audience-builder/search
bash
curl -X POST "https://app.democlearview.com/api/dashboard/audience-builder/search" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"filters": {
"location": { "state": "CA" },
"professional": { "seniority": "VP" },
"company": { "employeeCountMin": 50, "industry": "SaaS" }
},
"preview": true,
"limit": 25
}'
# Response
{
"totalCount": 14832,
"preview": [
{
"name": "Jane Smith",
"email": "jane@acme.com",
"title": "VP of Marketing",
"company": "Acme Corp",
"city": "San Francisco",
"state": "CA"
}
]
}

Export Audience

POST /api/dashboard/audience-builder/export
bash
curl -X POST "https://app.democlearview.com/api/dashboard/audience-builder/export" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"filters": {
"location": { "state": "CA" },
"professional": { "seniority": "VP" },
"company": { "employeeCountMin": 50, "industry": "SaaS" }
},
"format": "csv"
}'
# Response
{
"exportId": "exp_abc123",
"recordCount": 14832,
"format": "csv",
"downloadUrl": "https://app.democlearview.com/exports/exp_abc123.csv",
"expiresAt": "2026-04-11T15:00:00Z"
}

List Saved Audiences

GET /api/dashboard/audience-builder/saved
bash
curl -X GET "https://app.democlearview.com/api/dashboard/audience-builder/saved" \
-H "Authorization: Bearer YOUR_API_KEY"
# Response
{
"data": [
{
"id": "aud_abc123",
"name": "CA VP SaaS",
"filters": {
"location": { "state": "CA" },
"professional": { "seniority": "VP" },
"company": { "employeeCountMin": 50, "industry": "SaaS" }
},
"lastResultCount": 14832,
"createdAt": "2026-04-01T10:00:00Z",
"updatedAt": "2026-04-10T14:00:00Z"
}
]
}

Export Cap

Each individual export is limited to 25,000 records. If your audience exceeds this cap, apply additional filters to narrow the result set, or split your audience into multiple exports using location or industry filters.

Pro Tip: Combine with Watch List

Export an audience of target accounts, then upload their company domains to the Watch List. When anyone from those companies visits your site, ClearView fires an instant alert so your team can follow up while the prospect is still engaged.