---
title: "List Projects in Folder"
method: GET
path: "/spaces/{spaceId}/folders/{folderId}/content/projects"
tags: ["Folders"]
---

# List Projects in Folder

`GET /spaces/{spaceId}/folders/{folderId}/content/projects`

List projects located in a Folder. Filtering or search capabilities are not supported. This only returns the projects of the queried folder, without a recursive expansion to child folders.

## Path parameters

- `spaceId` string, uuid, required
- `folderId` string, uuid, required

## Query parameters

- `limit` integer
- `page` integer
- `sort` string

## Response `200`

OK

- object
  - `_links` CollectionLinks
    - `first` object
      - `href` string — First page of the collection.
    - `prev` object
      - `href` string — Previous page in the collection.
    - `self` object
      - `href` string — Current page of the collection.
    - `next` object
      - `href` string — Next page in the collection.
    - `last` object
      - `href` string — Last page of the collection.
  - `_meta` CollectionMeta
    - `total` integer — Total number of resources in the collection.
  - `_embedded` Project[]
    - `projectId` string
    - `spaceId` string, uuid — Always returned by the backend. Optional at project creation. If missing, the project will be created in the Personal Space of the user.
    - `parentFolderId` string, uuid — If missing, the project is located at the root level of the Space.
    - `createdAt` string, date-time
    - `name` string, required — The project title should contain the application you want to analyze as well as the simulation method you want to use, e.g. 'Heat exchanger - CHT simulation'.
    - `description` string — A meaningful description of the project.
    - `measurementSystem` 'SI' | 'US_CUSTOMARY', required — The measurement system of the project. Can't be modified.
    - `tags` string[]

## Other responses

- `403` — Insufficient permissions
- `404` — Element was not found

---

[API](https://skmtc.net/simscale/apis/simscale-api.md) · [All operations](https://skmtc.net/simscale/apis/simscale-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/simscale/simscale-api/revisions/53223abaceb7/schema)
