> ## 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.

# Check if submission exists for current week

> Check if a user has already made a submission for the current week



## OpenAPI

````yaml GET /submissions/exists/{email}
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:
  /submissions/exists/{email}:
    get:
      tags:
        - Submissions
      summary: Check if submission exists for current week
      description: Check if a user has already made a submission for the current week
      parameters:
        - name: email
          in: path
          required: true
          schema:
            type: string
            format: email
          description: Student email address
      responses:
        '200':
          description: Check completed successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  exists:
                    type: boolean
                    description: Whether a submission exists for this week

````