---
title: "Listar os filhos de um projeto"
method: GET
path: "/api/management/projects/{project}/hierarchy/children"
tags: ["projects", "Hierarquia"]
---

# Listar os filhos de um projeto

`GET /api/management/projects/{project}/hierarchy/children`

Retorna os projetos filhos diretos de um projeto, cada um com a contagem dos próprios filhos, e também o projeto pai do projeto consultado (quando houver). Não desce além do primeiro nível — para a árvore inteira, use a rota de árvore da hierarquia.

Conceitos e regras em [Hierarquia de projetos](https://docs.olie.ai/guides/projects/project-hierarchy).

## Query parameters

- `trashed` string
- `template` string

## Response `200`

Sucesso

- object — Filhos diretos e pai do projeto.
  - `response` boolean, required — Sempre true quando a operação é concluída.
  - `children` object[], required — Filhos diretos do projeto.
    - `id` string, uuid — ID (UUID) do projeto filho.
    - `code` string — Código do projeto.
    - `name` string — Nome do projeto.
    - `status` integer — Situação do projeto.
    - `parent_id` string, uuid — ID do projeto pai.
    - `impact` integer — Grau de impacto.
    - `budget` number — Orçamento.
    - `children_count` integer — Filhos diretos deste projeto.
  - `parent` object — Projeto pai do projeto consultado, quando existe.

## Changes

- **2026-08-24** `3c590152d5b5` — 5 breaking, 2 info
  - the response property `children/items/budget` became nullable for the status `200`
  - the response property `children/items/impact` became nullable for the status `200`
  - the response property `children/items/parent_id` became nullable for the status `200`
  - the `children/items/budget` response's property type changed from `integer` to `number` for status `200`
  - …3 more
- **2026-08-19** `3d619d9db20d` — 3 info
  - api tag `Hierarquia` added
  - api tag `hierarchy` removed
  - api tag `{id}` removed
- **2026-08-19** `5501d8ecc8a0` — 1 info
  - added the media type `application/json` for the response with the status `200`
- **2026-08-19** `d270bef5be29` — 2 info
  - added the new optional `query` request parameter `template`
  - added the new optional `query` request parameter `trashed`

[Change history](https://skmtc.dev/olie-ai/apis/olie-api/changes/api/management/projects/:project/hierarchy/children/get.md)

---

[API](https://skmtc.dev/olie-ai/apis/olie-api.md) · [All operations](https://skmtc.dev/olie-ai/apis/olie-api/llms.txt) · [OpenAPI document](https://skmtc.dev/olie-ai/apis/olie-api/revisions/d7bda7d32f67?raw)
