Skip to main content

Pageview-Level Data Export

The Advanced Export section lets you download pageview-level data as a TSV file.

This report contains raw data stored in QA ZERO.
This page explains each field and how to read the data.


Download location

Go to the Audience page and click:

Download Detailed Pageview Data (TSV) at the bottom.


TSV fields

#FieldTypeDescription
1reader_idIntegerUnique user ID assigned by QA ZERO
2UAosStringOS information (e.g., Windows, iPhone)
3UAbrowserStringBrowser information
4urlStringPage URL
5titleStringPage title
6device_idStringDevice type (pc / tab / smp)
7utm_sourceStringTraffic source
8source_domainStringReferrer domain
9utm_mediumStringTraffic medium
10utm_campaignStringCampaign name
11session_noIntegerSession number per day
12access_timeDatetimeAccess timestamp
13pvIntegerPageview order within a session
14speed_msecIntegerPage load time (ms)
15browse_secFloatTime spent on page (seconds)
16is_last0 or 1Exit flag
17is_newuser0 or 1New user flag

Key fields explained

pv

  • Sequential number within a session (1, 2, 3, ...)
  • Resets to 1 when a new session starts

speed_msec

  • Time to fully load the page
  • Unit: milliseconds

browse_sec

  • Time spent on the page
  • Measured until the next pageview or session end

is_last

  • Indicates the last page in a session
  • Only one row per session has value 1

is_newuser

  • Determined at session start
  • All rows in the same session share the same value
  • May change depending on cookie state

session_no

  • Session count per user per day
  • Resets when the date changes

Session rules:

  • 30+ minutes inactivity → new session
  • Within 30 minutes → same session

reader_id

  • Unique user identifier assigned by QA ZERO
  • Cookie-based, so it may differ across devices or browsers

Examples

Single page visit

reader_idsession_nopvis_lastbrowse_sec
43131110

User visited one page and left immediately.


Multiple page session

reader_idsession_nopvis_lastbrowse_sec
500011030
500012045
500013110

User viewed 3 pages and exited on the last page.


Multiple sessions in a day

reader_idsession_noaccess_timepvis_last
4313105:07:3511
4313208:05:4911

User visited twice with a gap, creating separate sessions.