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

# Get student information

> Retrieves student information using a submission token



## OpenAPI

````yaml GET /auth/students/info/{token}
openapi: 3.0.3
info:
  title: UAG Work-Based Learning API
  description: >-
    API for managing work-based learning submissions, authentication, and
    verification
  version: 1.0.0
servers:
  - url: https://wbl.monolisk.dev
    description: Production server
  - url: http://localhost:8787
    description: Development server
security: []
tags:
  - name: Authentication
    description: Authentication and user information endpoints
  - name: Submissions
    description: Work experience submission management
  - name: Verification
    description: Supervisor verification task management
paths:
  /auth/students/info/{token}:
    get:
      tags:
        - Authentication
      summary: Get student info from submission token
      description: Retrieves student information using a submission token
      parameters:
        - name: token
          in: path
          required: true
          schema:
            type: string
          description: Submission token
      responses:
        '200':
          description: Student information retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  info:
                    $ref: '#/components/schemas/UserInfo'
        '400':
          description: Missing token
        '404':
          description: Token not found
components:
  schemas:
    UserInfo:
      type: object
      properties:
        firstname:
          type: string
        lastname:
          type: string
        osis:
          type: string
        grade:
          type: string
        email:
          type: string
          format: email
        hours:
          type: integer
      required:
        - firstname
        - lastname
        - osis
        - grade
        - email
        - hours

````