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

# List all rubric templates

> Returns every rubric template for the authenticated organization, sorted newest first.



## OpenAPI

````yaml /openapi-components.json get /api/v1/assignment-grader/rubric-templates
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/assignment-grader/rubric-templates:
    get:
      tags:
        - Assignment Grader
      summary: List all rubric templates
      description: >-
        Returns every rubric template for the authenticated organization, sorted
        newest first.
      operationId: getRubricTemplates
      parameters: []
      responses:
        '200':
          description: All rubric templates retrieved
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RubricTemplateResponseDto'
        '401':
          description: Missing or invalid authentication
      security:
        - x-api-key: []
        - bearerAuth: []
components:
  schemas:
    RubricTemplateResponseDto:
      type: object
      properties:
        _id:
          type: string
          description: Template ID
        name:
          type: string
          description: Template name
        description:
          type: string
          description: Template description
        assignmentContent:
          type: string
          description: Default source material attached to this template
        criteria:
          description: Grading criteria
          type: array
          items:
            $ref: '#/components/schemas/RubricCriterionDto'
        organizationId:
          type: string
          description: Owning organization ID
        createdBy:
          type: string
          description: User who created the template
        createdAt:
          format: date-time
          type: string
          description: Creation timestamp
        updatedAt:
          format: date-time
          type: string
          description: Update timestamp
      required:
        - _id
        - name
        - criteria
        - organizationId
        - createdBy
        - createdAt
        - updatedAt
    RubricCriterionDto:
      type: object
      properties:
        title:
          type: string
          description: Title of the criterion
        description:
          type: string
          description: Description of the criterion
        pointsPossible:
          type: number
          description: Points possible for this criterion
      required:
        - title
        - pointsPossible
  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.
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        JWT bearer token for user session authentication. Resolves to both
        organization and user.

````