> ## Documentation Index
> Fetch the complete documentation index at: https://www.studyfetch.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Get test results with full question data for user or group



## OpenAPI

````yaml /openapi-components.json get /api/v1/usage-analyst/test-questions
openapi: 3.0.0
info:
  title: StudyFetch API
  description: API documentation for StudyFetch
  version: '1.0'
  contact: {}
servers:
  - url: https://studyfetchapi.com
    description: Production API Server
security: []
tags: []
paths:
  /api/v1/usage-analyst/test-questions:
    get:
      tags:
        - Usage Analyst
      summary: Get test results with full question data for user or group
      operationId: getTestQuestions
      parameters:
        - name: userId
          required: false
          in: query
          description: User ID to get test results for
          schema:
            type: string
        - name: groupIds
          required: false
          in: query
          description: Array of group IDs to filter
          schema:
            example:
              - class-101
              - class-102
            type: array
            items:
              type: string
      responses:
        '200':
          description: Test results with questions retrieved successfully
      security:
        - x-api-key: []
components:
  securitySchemes:
    x-api-key:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        API Key for server-to-server authentication. Resolves to the owning
        organization.

````