Skip to main content
Studies are the central object in User Intuition’s research platform. Every interview, screener, and panel order flows through a study. 14 tools.
ToolDescription
list_studiesList your studies
get_studyFetch a single study (always call BEFORE update_study)
create_studyCreate a new study (requires is_panel — Panel vs BYOP, see below)
update_studyPATCH a study (screener_questions REPLACES the full list)
delete_studySoft-delete a study
stop_panelsCancel all active panel surveys for a study
upload_concept_linkAdd a concept-test external link (dedups by label)
delete_concept_linkRemove a concept-test link by id
list_available_panel_questionsCatalog of standard panel screener questions ({id, name}; call BEFORE adding panel screeners)
get_panel_questionFetch one panel question with its answer options — needed to disqualify on a specific answer (e.g. Job Title = CEO)
list_available_languagesSupported voice/interview ISO language codes
list_available_modesVoice / chat / video mode catalog
list_study_typesCatalog of study TYPES (Win/Loss, Churn, NPS+CSAT, Onboarding, Brand Health, etc.) with per-user recommended_slug
get_study_typeFetch a single study type by slug

Response shaping

Response shaping. get_study returns a lean summary by default:
  • view"summary" (default) or "full" (raw record).
  • include — array of heavy fields to expand, e.g. ["screener_questions"].
  • fields — exact allowlist of top-level fields (id always returned); overrides view/include.
By default large screener option lists are truncated. Pass include or view: "full" to fetch the omitted data.

Panel vs BYOP study type

Every study is one of two types, set by the required is_panel flag on create_study:
  • Panel study (is_panel: true) — respondents are recruited from the paid panel. Only Panel studies can field a panel via create_panel. Respondent rewards are handled by the panel — don’t set incentive_amount; the reward cost/hold is previewed by the create_panel dry-run.
  • BYOP study (is_panel: false) — “bring your own participant”: you invite your own participants via create_invite. create_panel is not available. Incentives are BYOP-only: set incentive_amount / is_offering_enabled, then pay completers via send_reward.
Because is_panel is required, an agent should ask the user which type they want before calling create_study.

How User Intuition handles this

Studies are the central object in User Intuition’s research platform — every interview, screener, and panel order flows through them. Use list_study_types and list_available_modes to configure the right study shape before calling create_study. See /platform/agentic-research/ for how agents orchestrate the full study lifecycle end to end.