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

# Get all supported file types

> Returns a list of all file types supported by Chunkr, grouped by category.
Each category contains a list of formats, where each format includes an extension
paired with its corresponding MIME type.



## OpenAPI

````yaml https://api.chunkr.ai/docs/openapi.json get /file-types
openapi: 3.1.0
info:
  title: Chunkr API
  description: >-
    API service for document layout analysis and chunking to convert document
    into RAG/LLM-ready data.
  contact:
    name: Chunkr
    url: https://chunkr.ai
    email: ishaan@lumina.sh
  license:
    name: ''
  version: 2.62.0
servers:
  - url: https://api.chunkr.ai
    description: Chunkr API
security: []
tags:
  - name: Files
    description: Endpoints for uploading and managing files
  - name: Health
    description: Endpoint for checking the health of the service.
  - name: Tasks
    description: Endpoints for uploading and managing tasks
  - name: Webhook
    description: Endpoints for managing webhooks
paths:
  /file-types:
    get:
      tags:
        - Extras
      summary: Get all supported file types
      description: >-
        Returns a list of all file types supported by Chunkr, grouped by
        category.

        Each category contains a list of formats, where each format includes an
        extension

        paired with its corresponding MIME type.
      operationId: get_supported_file_types
      responses:
        '200':
          description: List of supported file types
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SupportedFileTypesResponse'
components:
  schemas:
    SupportedFileTypesResponse:
      type: object
      description: All supported file types grouped by category
      required:
        - document
        - spreadsheet
        - presentation
        - image
        - text
      properties:
        document:
          $ref: '#/components/schemas/FileTypeInfo'
        image:
          $ref: '#/components/schemas/FileTypeInfo'
        presentation:
          $ref: '#/components/schemas/FileTypeInfo'
        spreadsheet:
          $ref: '#/components/schemas/FileTypeInfo'
        text:
          $ref: '#/components/schemas/FileTypeInfo'
    FileTypeInfo:
      type: object
      description: Information about supported file formats in a category
      required:
        - formats
      properties:
        formats:
          type: array
          items:
            $ref: '#/components/schemas/FileTypeMapping'
    FileTypeMapping:
      type: object
      description: A single file type with its extension and mime type
      required:
        - extension
        - mime_type
      properties:
        extension:
          type: string
          description: The extension of the file type
        mime_type:
          type: string
          description: The MIME type of the file type

````