get_results
Retrieve student results and grades with pagination, course name filtering, and optional details such as teacher and median.
Instructions
Retrieve student results/grades with detailed information.
Args: limit: Maximum number of results to return (default: 15) offset: Number of results to skip from the beginning (default: 0) course_filter: Filter results by course name (partial match, case-insensitive) include_details: Whether to fetch detailed info (teacher, average, median) - saves API calls if False
Returns: Dictionary with results list and pagination info.
Examples: - get_results() -> First 15 results with details - get_results(course_filter="Math") -> Results from courses containing "Math" - get_results(include_details=False) -> Basic info only, faster response
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| offset | No | ||
| course_filter | No | ||
| include_details | No |