---
title: "List Portfolio Files"
method: GET
path: "/portfolio_files"
tags: ["Portfolio Files"]
---

# List Portfolio Files

`GET /portfolio_files`

Returns a paginated collection of portfolio files for a portfolio company profile.

## Query parameters

- `portfolio_company_profile_id` string, uuid, required
- `portfolio_folder_id` string, uuid
- `file_tag_id` union
  - string, uuid
  - string[]
- `page` integer

## Response `200`

Successfully retrieved portfolio files

- object
  - `portfolio_files` PortfolioFile[]
    - `id` string, uuid, required — Unique identifier for the portfolio file
    - `name` string, required — Name of the portfolio file
    - `size` integer, required — Size of the portfolio file in bytes
    - `content_type` string, required — MIME type of the portfolio file
    - `created_at` string, date-time, required — When the portfolio file was created
    - `portfolio_company_profile_id` string, uuid, required — ID of the associated portfolio company profile
    - `portfolio_folder_id` string, uuid, nullable, required — ID of the associated portfolio folder
    - `file_tag_ids` string[], required — IDs of the associated file tags
    - `download_url` string, uri — Temporary download URL for the portfolio file
  - `meta` PaginationMeta
    - `total` integer, required — Total number of items across all pages
    - `total_pages` integer, required — Total number of pages
    - `page` integer, required — Current page number

## Other responses

- `401` — Unauthorized - Invalid or missing authentication token
- `403` — Forbidden - The authenticated user does not have access to the requested resource
- `429` — Too Many Requests - Rate limit exceeded

---

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