---
title: "Listar resultados de uma meta"
method: GET
path: "/api/management/goals/{goal}/results"
tags: ["goals", "results"]
---

# Listar resultados de uma meta

`GET /api/management/goals/{goal}/results`

Retorna todos os resultados já apurados da meta, em ordem crescente de período e sem paginação. O campo `progress_change_percentage` compara o progresso de cada período com o do período anterior e é sempre 0 no primeiro resultado.

## Response `200`

Sucesso

- object — Todos os resultados já apurados da meta, em ordem crescente de período.
  - `response` boolean — Indicador de sucesso da requisição. Sempre true nas respostas bem-sucedidas.
  - `results` object[] — Resultados apurados da meta.
    - `id` integer — ID do resultado apurado.
    - `target` integer — Alvo vigente no período apurado.
    - `progress` integer — Progresso alcançado no período.
    - `progress_change_percentage` number — Variação percentual do progresso em relação ao período anterior. Sempre 0 no primeiro resultado.
    - `period` integer — Índice do período apurado, contado a partir de 0 na data de início da meta.
    - `init_date` string, date, nullable — Primeiro dia do período apurado, no formato YYYY-MM-DD.
    - `end_date` string, date, nullable — Último dia do período apurado, no formato YYYY-MM-DD.
    - `created_at` string, date-time — Momento em que o resultado foi apurado.

## Other responses

- `404` — Meta não encontrada

## Changes

- **2026-09-22** `d71b18b1685d` — 3 breaking, 1 warning
  - the response property `results/items/end_date` became nullable for the status `200`
  - the response property `results/items/init_date` became nullable for the status `200`
  - the `results/items/progress_change_percentage` response's property type changed from `integer` to `number` for status `200`
  - added the new `goal_model_not_found` enum value to the `message` response property for the response status `404`
- **2026-09-18** `3202abfa17f9` — 2 info
  - added the media type `application/json` for the response with the status `200`
  - added the non-success response with the status `404`

[Change history](https://skmtc.dev/olie-ai/apis/olie-api/changes/api/management/goals/:goal/results/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/d71b18b1685d?raw)
