---
title: "List files"
method: GET
path: "/v1/files"
tags: ["Files"]
---

# List files

`GET /v1/files`

List all files uploaded by the current user.

## Query parameters

- `limit` integer — Maximum number of files to return.
- `after` string, nullable — Unique identifier for a file.

## Response `200`

Successful Response

- FileListResponse — Paginated response for listing files. Uses cursor-based pagination for efficient iteration through results.
  - `object` 'list', required — The object type, which is always 'list'.
  - `data` FileResponse[], required — List of files.
    - `id` string, required — The unique identifier for this file.
    - `object` 'file', required — The object type, which is always 'file'.
    - `file_name` string, required — The original filename of the uploaded file.
    - `content_type` string, required — The MIME type of the file.
    - `size` integer, required — The size of the file in bytes.
    - `created_at` string, date-time, required — The timestamp when the file was uploaded.
  - `first_id` string, nullable — Unique identifier for a file.
  - `last_id` string, nullable — Unique identifier for a file.
  - `has_more` boolean, required — Whether there are more results available after this page.

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `422` — Unprocessable Content
- `429` — Too Many Requests

## Changes

- **2026-01-30** `343b87354807` — 4 info
  - the response property `data/items/object` became required for the status `200`
  - the response property `object` became required for the status `200`
  - the `object` response's property default value `file` was removed for the status `200`
  - the `object` response's property default value `list` was removed for the status `200`
- **2026-01-26** `f87ec588f22a` — 1 breaking, 3 info
  - for the `query` request parameter `limit`, the type/format was changed from `integer`/`` to `integer`/`int32`
  - added the non-success response with the status `401`
  - added the non-success response with the status `403`
  - added the non-success response with the status `429`

[Change history](https://skmtc.dev/deeptable-com/apis/deeptable-api/changes/v1/files/get.md)

---

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