---
title: "List All Documents"
method: GET
path: "/api/v1/eevee/apikey/documents/all/"
tags: ["Documents"]
---

# List All Documents

`GET /api/v1/eevee/apikey/documents/all/`

Fetch a comprehensive list of all documents in your account. You can filter and sort the results using various parameters, such as document type, status, creation date, and folder.

## Query parameters

- `view` 'files' | 'folder' | 'all_files'
- `folder_id` string
- `limit` integer
- `offset` integer
- `doc_type` string
- `status` 'reviewing' | 'processed' | 'erred'
- `q` string
- `sort_by` 'created_date.asc' | 'created_date.desc'
- `created_date` string

## Headers

- `apikey` string, required

## Response `200`

OK

- InlineResponse2003
  - `data` InlineResponse2003Data
    - `documents` InlineResponse2003DataDocuments[] — A list of documents matching the query.
      - `approved_with_error` boolean — A boolean value indicating if the document was approved (status changed to 'processed') despite having validation errors.
      - `converted_to_digital` boolean — An internal flag indicating whether the document was digitized via OCR.
      - `created_at_iso` string — The document creation timestamp in ISO 8601 format.
      - `doc_id` string — The unique identifier for the document.
      - `doc_meta_data` string — Metadata associated with the document, provided during upload.
      - `folder_id` string — The unique identifier for the folder containing the document.
      - `folder_name` string — The name of the folder containing the document.
      - `modified_at_iso` string — The timestamp of the last modification in ISO 8601 format.
      - `preview_image` InlineResponse2003DataPreviewImage — Data for the document's preview image.
        - `height` integer — The height of the preview image in pixels.
        - `url` string — The URL for the document's preview image.
        - `width` integer — The width of the preview image in pixels.
      - `review_token` boolean — A boolean flag indicating if the review URL has a signed token embedded in it.
      - `review_url` string — The URL for reviewing the document.
      - `s3_filename` string — The filename of the document as stored in the backend.
      - `status` 'reviewing' | 'processed' | 'erred' — The processing status of the document.
      - `template_doc_id` string — The ID of the template from which the document type was created.
      - `time_dict` InlineResponse2003DataTimeDict
        - `processing_time` number — The time in seconds the document took to process.
        - `total_time` number — The total time in seconds from upload to completion of processing.
      - `title` string — The title of the document.
      - `type` string — The document type identifier.
      - `type_title` string — The display name of the document type.
      - `uploaded_by` InlineResponse2003DataUploadedBy — Metadata about the user who uploaded the document.
        - `avatar_url` string — The URL for the user's avatar image.
        - `email` string — The email address of the user who uploaded the document.
        - `full_name` string — The full name of the user who uploaded the document.
        - `user_id` string — The unique identifier for the user who uploaded the document.
      - `user_doc_id` string — The custom identifier you provided for the document for internal tracking.
    - `limit` integer — The maximum number of documents returned in this response.
    - `offset` integer — The number of documents skipped for pagination.
    - `total` integer — The total number of documents that match the query.
  - `error` string — A message describing any errors encountered during the request.
  - `error_code` string — A code representing the specific error, if any.
  - `message` string — Additional information or context about the response.
  - `status` string — The status of the request (e.g., 'success' or 'fail').
  - `status_code` integer — The HTTP status code of the response.

## Other responses

- `401` — Unauthorized
- `404` — Not Found
- `500` — Internal Server Error

---

[API](https://skmtc.dev/docsumo/apis/docsumo-api.md) · [All operations](https://skmtc.dev/docsumo/apis/docsumo-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/docsumo/docsumo-api/revisions/b29ba62ebe9b/schema)
