Sample centerThree products, twelve buyer profiles

Start with your decision.
Then inspect the data.

Download expanded synthetic clickstream events, AI search signals, and domain trend packages. Use the buyer map to find the fields, metrics, and SQL pattern that fit your team.

Product samples

Three universal technical starting points

Each package now includes broader synthetic category and market examples. The structure is designed for warehouse and methodology review, not as evidence of current BGraph scale, coverage, or availability.

01Raw event structure

Clickstream events feed

A synthetic event-level feed aligned to the supplied raw field specification, including hashed randomized user IDs, UTC timestamps, geography, referrer and target URLs, user agent, and HTTP code.

36 synthetic rows11 sample fieldsRaw-ready
Download complete package
Limitations
  • No real users, browsing records, URLs, cities, or postal codes
  • Pseudonymous event-level delivery requires a separate rights and privacy review
  • Production fields may be removed, generalized, aggregated, or delayed
02Aggregated discovery

AI search signals

An aggregated market view of AI discovery by broad platform class, topic, intent, source domain, destination domain, referral activity, cohort measure, and time to visit.

36 synthetic rows15 sample fieldsPrivacy-secured
Download complete package
Limitations
  • No raw prompt text, private conversation text, or person-level profile
  • Counts, rates, taxonomies, and privacy tiers are illustrative
  • Small cohorts, sensitive topics, and disallowed uses must be excluded
03Market movement

Domain and category trends

An aggregated sample for indexed domain movement, category rank, cohort reach, referral share, AI referral share, channel mix, and week-over-week change.

48 synthetic rows15 sample fieldsAnalysis-ready
Download complete package
Limitations
  • Index values are not traffic or panel estimates
  • Shares are illustrative and may omit unlisted channels
  • Taxonomies, normalization, cohorts, and rank scope require documentation
Buyer map

Choose by the decision your team needs to make

These profiles map the three samples to common evaluation questions. They are not separate products or coverage promises.

01Trends + clickstream

Market intelligence and consulting

Benchmark category leaders, challengers, and channel shifts.

Index, rank, referral share
02Trends + clickstream

Investment and due diligence

Compare synthetic momentum, demand paths, and competitive concentration.

Change, cohort index, transitions
03Clickstream + AI signals

Retail and ecommerce

Understand discovery-to-product journeys and referral mix.

Paths, CTR, time to visit
04Clickstream + AI signals

Travel and hospitality

Measure destination discovery, research, and booking transitions.

Intent, referrals, paths
05AI signals + trends

SaaS and product teams

Track research, comparison, validation, and vendor visits.

Intent, CTR, category rank
06AI search signals

AI search and GEO teams

Monitor AI discovery classes, topics, destinations, and downstream visits.

Topic, platform class, referrals
07Trends + AI signals

Media and publishers

Evaluate research destinations, audience movement, and AI referral mix.

AI share, search share, cohort index
08Trends + clickstream

Advertising agencies and adtech

Compare synthetic channel shares and category demand paths.

Referral, search, direct, paths
09Clickstream + AI signals

Consumer brands

See how category research moves toward product and comparison pages.

Intent, destination, time to visit
10All three samples

Data platforms and ML teams

Validate schemas, ingestion patterns, feature candidates, and joins.

Fields, windows, privacy tiers
11AI signals + trends

Cybersecurity and risk research

Study vendor discovery without person-level profiling.

Topic, intent, visits index
12AI signals + trends

Academic and policy research

Evaluate aggregated behavioral methods, taxonomy, and reproducibility.

Cohort indices, channel shares
Synthetic taxonomy

More category shapes for integration testing

Twelve category and market combinations make the same schemas useful across consumer, B2B, media, finance, travel, and technology evaluations.

01Consumer electronics02Travel03Productivity software04Smart home05Financial services06Apparel07Beauty and personal care08Online education09Automotive10Media streaming11Cybersecurity12Food delivery

All category names, markets, domains, paths, counts, rates, and indices are fabricated. Inclusion here does not mean that BGraph currently covers or sells that category or market.

Raw source alignment

Fields carried into the event sample

The clickstream package follows the supplied raw-data field list. Names are normalized to snake_case for warehouse use. The public CSV is convenient for evaluation, while an approved raw delivery can use partitioned TSV with gzip or Parquet.

Raw format
TSV
Archive
Gzip
Folders
Year / Month / Day
Line endings
Linux LF
Reference file size
Up to 1000 MB
UserIduser_id_hash

Hashed randomized identifier

EventDateevent_date

UTC event and partition date

EventTimestampevent_timestamp

UTC time with milliseconds

CountryCodecountry_code

ISO country code

Citycity

Optional city label

PostalCodepostal_code

Optional postal code

ReferrerUrlreferrer_url

Referring URL

TargetUrltarget_url

Visited URL

UserAgentuser_agent

Retrieval and interaction agent

HttpCodehttp_code

Optional HTTP response code

SQL examples

Inspect how the files can be used

The downloadable SQL files use DuckDB syntax and Parquet paths. Adapt table paths and field policies to the approved delivery.

01

Clickstream events feed

Download SQL ↓
WITH ordered_events AS (
  SELECT user_id_hash, event_timestamp, target_url,
    LAG(target_url) OVER (
      PARTITION BY user_id_hash ORDER BY event_timestamp
    ) AS previous_target_url
  FROM read_parquet('clickstream-events/*.parquet')
)
SELECT previous_target_url, target_url, COUNT(*) AS transitions
FROM ordered_events
WHERE previous_target_url IS NOT NULL
GROUP BY 1, 2
ORDER BY transitions DESC;
02

AI search signals

Download SQL ↓
SELECT market, query_topic, destination_domain,
  SUM(referral_visits) AS referral_visits,
  SUM(referral_visits * click_through_rate)
    / SUM(referral_visits) AS weighted_ctr
FROM read_parquet('ai-search-signals/*.parquet')
GROUP BY 1, 2, 3
ORDER BY referral_visits DESC;
03

Domain and category trends

Download SQL ↓
SELECT market, category, domain, visits_index,
  week_over_week_change, ai_referral_share, rank_in_category
FROM read_parquet('domain-category-trends/*.parquet')
WHERE period_start = DATE '2026-07-13'
ORDER BY market, category, rank_in_category;
Important

Every value is fabricated. These packages show structure and analysis patterns only. They do not imply current users, events, traffic, countries, history, panel size, market coverage, or commercial availability.

Request a sample for your market ↗