Returns a paginated list of focus groups for the authenticated user.
curl --request GET \
--url https://app.mavera.io/api/v1/focus-groups \
--header 'Authorization: Bearer <token>'{
"object": "list",
"data": [
{
"id": "<string>",
"object": "focus_group",
"status": "<string>",
"created_at": 123,
"updated_at": 123,
"name": "<string>",
"sample_size": 123,
"personas_count": 123,
"questions_count": 123,
"error": "<string>"
}
],
"has_more": true,
"next_cursor": "<string>"
}API key prefixed with mvra_live_. Create keys at Settings > Developer > API Keys.
Filter by focus group status.
pending, generating, completed, failed Search by name.
Maximum number of results to return (1-100).
1 <= x <= 100Cursor for pagination.
curl --request GET \
--url https://app.mavera.io/api/v1/focus-groups \
--header 'Authorization: Bearer <token>'{
"object": "list",
"data": [
{
"id": "<string>",
"object": "focus_group",
"status": "<string>",
"created_at": 123,
"updated_at": 123,
"name": "<string>",
"sample_size": 123,
"personas_count": 123,
"questions_count": 123,
"error": "<string>"
}
],
"has_more": true,
"next_cursor": "<string>"
}