Create a new AI-powered focus group study. Focus groups generate synthetic responses from personas for market research, product feedback, and audience insights.
Pricing: 1 credit per response (minimum 100 credits). Total cost = personas × sample_size × questions.
Processing: Analysis is performed asynchronously. Poll GET /focus-groups/{id} to check status.
curl -X POST https://app.mavera.io/api/v1/focus-groups \
-H "Authorization: Bearer mvra_live_your_key_here" \
-H "Content-Type: application/json" \
-d '{
"name": "Product Feedback Study",
"sample_size": 50,
"persona_ids": ["persona_id_1", "persona_id_2"],
"questions": [
{
"question": "How likely are you to recommend this product?",
"type": "net_promoter_score"
},
{
"question": "What features do you value most?",
"type": "multiple_choice_multiple",
"options": ["Price", "Quality", "Design", "Brand"]
}
]
}'{
"id": "cly2xyz3e0001efghij456789",
"object": "focus_group",
"status": "pending",
"created_at": 1706380800,
"name": "Product Feedback Study Q1 2026",
"sample_size": 50,
"credits_charged": 500,
"personas": [
{
"id": "<string>",
"name": "<string>"
}
],
"questions": [
{
"id": "<string>",
"question": "<string>",
"type": "<string>",
"options": [
"<string>"
],
"order": 123
}
]
}API key prefixed with mvra_live_. Create keys at Settings > Developer > API Keys.
Name/title for the focus group study.
3 - 100"Product Feedback Study Q1 2026"
Number of responses to generate per persona per question.
1 <= x <= 50050
Array of persona IDs to participate in the focus group. Get persona IDs from GET /personas.
1 - 20 elements[
"clx1abc2d0001abcdef123456",
"clx1abc2d0002abcdef789012"
]Array of questions for the focus group.
1 - 50 elementsShow child attributes
Focus group created and processing started.
Unique focus group ID.
"cly2xyz3e0001efghij456789"
focus_group "focus_group"
Current processing status.
pending, generating, completed, failed "pending"
Unix timestamp of creation.
1706380800
"Product Feedback Study Q1 2026"
50
Total credits charged for this focus group.
500
Show child attributes
Show child attributes
curl -X POST https://app.mavera.io/api/v1/focus-groups \
-H "Authorization: Bearer mvra_live_your_key_here" \
-H "Content-Type: application/json" \
-d '{
"name": "Product Feedback Study",
"sample_size": 50,
"persona_ids": ["persona_id_1", "persona_id_2"],
"questions": [
{
"question": "How likely are you to recommend this product?",
"type": "net_promoter_score"
},
{
"question": "What features do you value most?",
"type": "multiple_choice_multiple",
"options": ["Price", "Quality", "Design", "Brand"]
}
]
}'{
"id": "cly2xyz3e0001efghij456789",
"object": "focus_group",
"status": "pending",
"created_at": 1706380800,
"name": "Product Feedback Study Q1 2026",
"sample_size": 50,
"credits_charged": 500,
"personas": [
{
"id": "<string>",
"name": "<string>"
}
],
"questions": [
{
"id": "<string>",
"question": "<string>",
"type": "<string>",
"options": [
"<string>"
],
"order": 123
}
]
}