Skip to main content
Once participants start joining your quest and submitting data, you can monitor and explore everything from the quest detail page. Navigate there by clicking on a quest from the quests list.
Quests dashboard with table columns for title, description, organization, status, and actions

Quest Detail Page Overview

The quest detail page shows:
  • Quest title, description, and status (Draft, Published, or Unpublished)
  • Action buttons for publishing, sharing, downloading, and refreshing data
  • Participant responses table listing every data submission across all data types

Data Types

All submissions are displayed in a single Participant Responses table with four columns:
ColumnDescription
UserThe participant’s unique identifier (user GUID)
TypeThe kind of data submitted (see below)
TimestampWhen the data was submitted, formatted as YYYY-MM-DD HH:mm:ss
ValueThe response content — displayed inline or with a View data button
The table combines the following data types:
TypeDescription
prompt_responsesAnswers to recurring prompts (surveys). The value contains the participant’s response text or selection.
onboarding_responsesAnswers to onboarding/screening questions submitted when the participant joined the quest.
experiment_trialsResults from jsPsych experiments. Stored as JSON in blob storage — click View data or Download to access.
brain_recordingsEEG recordings from Neurosity Crown or Muse devices. Stored in blob storage — click View data or Download to access.
Health data (steps, sleep, heart rate) is displayed separately in a graph view when available, with a category selector to switch between metrics.

Viewing Individual Responses

Prompt & Onboarding Responses

For prompt_responses and onboarding_responses, click the View data button in the Value column. A viewer panel opens below the action bar showing the response as formatted JSON.

Experiment Trials & Brain Recordings

For experiment_trials and brain_recordings, each row shows:
  • Dataset name — the experiment name or recording type (e.g., “Stroop Task” or “EEG Recording”)
  • View data — opens the data in an inline viewer panel
  • Download — downloads the individual dataset as a JSON or CSV file
  • URL Parameters (if present) — expandable section showing any URL parameters captured at submission time (e.g., Prolific IDs)
The downloaded file is named using the pattern:
{type}_{name}_{userGuid}_{timestamp}.{json|csv}

Dataset Viewer

When you click View data on any response, a viewer panel appears showing:
  • Header — the data type and a truncated user GUID for context
  • Content — the full response data rendered as formatted, syntax-highlighted text
  • Close button to dismiss the viewer
The viewer supports both JSON and plain-text content. For experiment trials and brain recordings, the data is fetched from blob storage on demand.

Downloading All Data

Click the Download Dataset button in the action bar to export all quest data as a single CSV file. The CSV contains the following columns:
ColumnDescription
userGuidParticipant identifier
questGuidQuest identifier
timestampUnix timestamp of the submission
typeData type (e.g., prompt_responses, experiment_trials - Stroop Task)
valueThe full response value (JSON-encoded for complex data)
For experiment trials and brain recordings, the type column includes the experiment or dataset name — e.g., experiment_trials - Stroop Task — so you can filter by experiment in your analysis tool.
The file is named quest_{questId}_data.csv.

Health Data (Graph View)

If your quest collects health metrics (steps, sleep, heart rate), the page includes a graph view showing trends over the past week. Use the category selector to switch between:
CategoryMetric
StepsDaily step count
SleepSleep duration
Heart RateHeart rate measurements
Each participant’s data is plotted as a separate series on the line chart.

Vital User Mapping

If your quest is integrated with the Vital API for wearable data, a Get Vital to Fusion User Mapping button appears in the action bar. Clicking it downloads a CSV mapping Vital user IDs to NeuroFusion user GUIDs — useful for reconciling wearable data with participant identities.

Refreshing Data

Click the Refresh button to reload all datasets from the server. This fetches the latest submissions without reloading the entire page.

Next Steps