Skip to content

Research Platforms

OpenInterviewer: Qualitative Interviews

OpenInterviewer helps researchers run adaptive interview studies while preserving study design and review control.

Scale lets you hear voices that scheduling would have silenced.

OpenInterviewer is an open-source platform for qualitative research interviews. You design the study and share a link. Participants then engage with an AI interviewer that adapts based on their responses.

PLATFORMXule LinNext.js

Sourcegithub.com/linxule/openinterviewer

AI providers: Gemini (default) or Claude, with per-study model selection

Deploy: one-click Vercel deployment

Warning

This is not a replacement for human interviews. AI interviews generate different data than human-conducted interviews. They're a complementary method for exploratory research, pilot studies, larger samples, and participants across time zones. The platform extends your research reach; it does not substitute for your interpretive presence.

Why it matters

  • pilot studies — test interview protocols before committing to full human-conducted studies
  • larger samples — collect interview data from 50+ participants without scheduling constraints
  • exploratory research — gather perspectives on emerging topics
  • cross-timezone studies — engage participants on their own schedule
  • complementary data — pair with human interviews for methodological triangulation

How it works

For researchers

  1. Create a study — Define research questions, participant profiles, and interview mode
  2. Configure the interviewer — Choose structured, standard, or exploratory mode; select your AI model
  3. Share the link — Participants access via a simple URL (with optional expiration)
  4. Monitor and analyze — Real-time synthesis of themes, contradictions, and patterns
  5. Generate follow-ups — Create new studies based on synthesis findings to dig deeper

For participants

  1. Open the link — No account or app required
  2. Consent — Standard consent flow
  3. Conversation — Natural dialogue with an AI interviewer that adapts to responses
  4. Demographics — Collected conversationally, not as a separate form

Tools

Interview modes

ModeBest ForAI Behavior
StructuredConfirmatory researchFollows predefined questions closely
StandardBalanced explorationFollows guide with adaptive follow-ups
ExploratoryDiscovery researchFree-flowing conversation guided by participant responses

Model selection

Each study can use a different AI model. Select it from a dropdown in the study setup page. This lets you balance cost, speed, and quality per study.

Gemini Models

  • gemini-2.5-flash — Fast, cost-effective (default)
  • gemini-2.5-pro — Higher quality responses
  • gemini-3.1-pro-preview — Higher-capability option (preview)

Claude Models

  • claude-haiku-4-5 — Fastest
  • claude-sonnet-4-5 — Balanced (default)
  • claude-opus-4-5 — Higher capability in the app's current catalogue

This is the list the tool actually offers, not a recommendation. Per-token prices move, so we do not restate them: see Anthropic's pricing and Gemini API pricing.

Model priority: per-study UI selection takes precedence over environment variable defaults.

AI reasoning mode

For analytical operations like synthesis, the platform switches to its configured higher-capability model with extended thinking enabled. This produces richer thematic analysis without slowing down the interview itself.

OperationReasoningModel Used
Interview responsesOFFYour selected model
Greeting generationOFFYour selected model
Per-interview synthesisONConfigured synthesis model (Gemini 3.1 Pro / Claude Opus 4.5)
Aggregate synthesisONConfigured synthesis model
Follow-up study generationONConfigured synthesis model

Each study can override this behavior: Automatic (recommended default), Always enabled (slower interviews but deeper responses), or Always disabled (faster but less thorough synthesis). Disabling reasoning reduces thinking-token use; it does not change the configured synthesis model. Keep in mind that synthesis uses a higher-cost configured model. Monitor costs if you run many interviews.

Built-in analysis

  • Per-interview synthesis — Automatic extraction of stated vs revealed preferences, themes, and contradictions
  • Cross-interview analysis — Pattern identification across all participants
  • Aggregate reporting — Themes, outliers, and convergence points
  • Follow-up studies — New research questions generated from synthesis findings to iteratively deepen your inquiry

When generating participant links, you can set expiration windows (7 days, 30 days, 90 days, or never). You can also toggle link access on or off from the study detail page. Use this to close data collection on a schedule, pause a study, or revoke links if they've been shared beyond your intended sample.

Security

  • API keys stay server-side, never exposed to participants
  • Researcher dashboard is password-protected
  • Participant tokens are JWT-signed
  • Data stored in encrypted Vercel KV (Redis)

Host support

OpenInterviewer is a Next.js web platform, not a plugin or MCP server. It runs anywhere you can run a Node app.

Host support: which research environments this tool works in
HostSupportNotes
One-click Vercel deploymentFull supportThe recommended path. The deploy button below sets env vars and provisions Vercel KV in one flow.
Self-hosted Node.jsFull supportStandard Next.js app; deploy to any Node-capable host. You'll need to wire your own Redis-compatible store for state.
Local developmentFull supportbun install && bun run dev
Claude Code / Codex CLI / DesktopNo supportA web platform, not an agent-callable tool. Develop or extend it from any coding agent; agents do not invoke it at runtime.

If you're choosing between platforms: Vercel takes about two minutes; self-host if you need data residency control.

Install

The fastest path is the one-click Vercel deployment. Open the deployment link, set two environment variables, and the app is usually live in about two minutes.

Deploy OpenInterviewer on Vercel

For local development:

git clone https://github.com/linxule/openinterviewer.git
cd openinterviewer

bun install
cp .env.example .env.local
# Edit .env.local with your API keys
bun run dev

Environment variables

VariableRequiredDescription
GEMINI_API_KEYYesGoogle Gemini API key (get one free)
ADMIN_PASSWORDYesPassword to protect the researcher dashboard
ANTHROPIC_API_KEYNoUse Claude instead of/alongside Gemini
AI_PROVIDERNogemini (default) or claude
GEMINI_MODELNoOverride default Gemini model (gemini-2.5-flash)
CLAUDE_MODELNoOverride default Claude model (claude-sonnet-4-5)

Vercel configures KV credentials (KV_REST_API_URL, KV_REST_API_TOKEN, etc.) automatically when you connect an Upstash Redis store through the Vercel dashboard.

Architecture

Built on Next.js with a clean separation between researcher and participant flows:

OpenInterviewer architecture
OPENINTERVIEWER
      |
      +-- Researcher dashboard
      |     +-- study management
      |     +-- live monitoring
      |     +-- cross-interview analysis
      |
      +-- Participant interface
      |     +-- consent flow
      |     +-- AI-conducted interview
      |     +-- demographic collection
      |
      +-- Backend
            +-- model abstraction
            +-- data persistence
            +-- participant authentication

Methodological considerations

AI-conducted interviews are a young method. When designing a study, disclose the AI interviewer, check institutional ethics requirements, and expect shorter, more structured conversations. AI interviewers offer consistent coverage; human interviewers offer unexpected depth. The two are strongest together.

Part of Research Memex

OpenInterviewer sits at the data-collection end of the stack. Most of the Toolkit helps you interpret material you already hold; this platform produces the material: consented, structured interview data that arrives as text, ready for the same interpretive work the rest of the stack supports.

Carrel status: OpenInterviewer is outside Carrel's install scope. It is a standalone web platform, deployed on Vercel or self-hosted, not a tool added to a coding agent.

cite this page

Lin, X. (2026). OpenInterviewer: Qualitative Interviews. Research Memex. https://research-memex.org/docs/toolkit/openinterviewer

@misc{docs-toolkit-openinterviewer-2026,
  author = {Xule Lin},
  title = {OpenInterviewer: Qualitative Interviews},
  year = {2026},
  howpublished = {\url{https://research-memex.org/docs/toolkit/openinterviewer}},
  note = {ORCID: 0000-0001-7885-4194}
}

one renderingthe source remains