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

# Get System Presets

> Get only system presets.



## OpenAPI

````yaml /api-reference/openapi-filtered.json get /presets/system/
openapi: 3.1.0
info:
  title: Aseed Insight API
  version: 0.1.0
servers:
  - url: https://app.aseed.ai/custdev
security: []
tags:
  - name: insight
    description: 'Core insight endpoints: records, transcripts, generation, and chat.'
    x-displayName: Insight
  - name: insight_public
    description: Public insight endpoints for shared/public access.
    x-displayName: Insight Public
  - name: projects
    description: Project management endpoints.
    x-displayName: Projects
  - name: project_reports
    description: Project report generation and management endpoints.
    x-displayName: Project Reports
  - name: project_reports_public
    description: Public project report endpoints.
    x-displayName: Project Reports Public
  - name: prompts
    description: Custom prompts management endpoints.
    x-displayName: Prompts
  - name: presets
    description: Presets and templates endpoints.
    x-displayName: Presets
  - name: agent
    description: AI agent threads and chat endpoints.
    x-displayName: Agent
  - name: interviews
    description: AI interviewer room and session endpoints.
    x-displayName: Interviews
  - name: webhooks
    description: Incoming webhook endpoints.
    x-displayName: Webhooks
paths:
  /presets/system/:
    get:
      tags:
        - presets
      summary: Get System Presets
      description: Get only system presets.
      operationId: get_system_presets_presets_system__get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PresetsListResponse'
      security:
        - HTTPBearer: []
components:
  schemas:
    PresetsListResponse:
      properties:
        presets:
          items:
            $ref: '#/components/schemas/PresetResponse'
          type: array
          title: Presets
        total:
          type: integer
          title: Total
      type: object
      required:
        - presets
        - total
      title: PresetsListResponse
      description: Response model for a list of presets.
    PresetResponse:
      properties:
        id:
          type: string
          title: Id
        email:
          type: string
          title: Email
        preset_type:
          type: string
          title: Preset Type
        icon:
          anyOf:
            - type: string
            - type: 'null'
          title: Icon
        category:
          anyOf:
            - type: string
            - type: 'null'
          title: Category
        title:
          type: string
          title: Title
        prompt_ids:
          items:
            type: string
          type: array
          title: Prompt Ids
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
      type: object
      required:
        - id
        - email
        - preset_type
        - title
        - prompt_ids
        - created_at
        - updated_at
      title: PresetResponse
      description: Response model for a single preset.
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````