---
title: "List Charts Endpoint"
method: GET
path: "/api/v2/charts"
tags: ["APPS_V2"]
---

# List Charts Endpoint

`GET /api/v2/charts`

List charts whose dataset is visible on the requesting tenant's platform.

## Headers

- `x-tenant` string, required
- `x-user-group-id` string, nullable
- `x-timezone` string, nullable

## Response `200`

Successful Response

- ChartDescriptor[]
  - `name` string, required
  - `label` string, required
  - `dataset` string, required
  - `chart_type` string, required
  - `x` string, required
  - `series` string[], required
  - `stacked` boolean, required
  - `filters` FilterDescriptor[], required
    - `key` string, required
    - `label` string, required
    - `listable` boolean, required
    - `options` OptionDescriptor[], nullable
      - `value` string, required
      - `label` string, nullable
  - `related` RelatedDescriptor, required — Wire form of `apps.catalog.relations.RelatedNames` — the symmetrised page-affinity edges of one dataset/chart/summary, split by kind. This module owns no catalog lookups (see the module docstring's import rules), so nothing here builds a `RelatedDescriptor` from a `RelatedNames` — that projection lives in `apps.api.serializers`, the layer that already resolves `apps.catalog.RELATIONS`.
    - `datasets` string[], required
    - `charts` string[], required
    - `summaries` string[], required
  - `reference` ReferenceLineDescriptor, required
    - `of` string, required
    - `percentile` number, required
    - `label` string, required
    - `color` PaletteColorDescriptor, required — Wire form of `apps.specs.palette.PaletteColor` — a color stepped per surface. Colors live ONLY in descriptors; the frontend never hardcodes a chart color.
      - `light` string, required
      - `dark` string, required
  - `series_colors` object, required
  - `series_from` string, nullable
  - `show_change` boolean

## Other responses

- `403` — Not supported for public user
- `422` — Validation Error

---

[API](https://skmtc.net/myaltimate/apis/fastapi.md) · [All operations](https://skmtc.net/myaltimate/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/myaltimate/fastapi/revisions/33e87d9898ad/schema)
