> ## Documentation Index
> Fetch the complete documentation index at: https://docs.appsignal.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Retrieving saved visuals

Retrieve a saved visual (a chart) with the [Public API (V2)](/api/v2/overview),
as JSON or CSV. Unlike the other V2 endpoints, these do not require
authentication, so you can embed them directly.

## Retrieve a saved visual as JSON

<CodeGroup>
  ```shell Endpoint theme={null}
  GET /api/v2/saved_visuals/{id}
  ```
</CodeGroup>

Returns the visual's `id`, `resolution` (such as `HOURLY` or `MINUTELY`),
`value_format` (such as `number` or `duration`), an optional `value_input`, and a
`series` array. Each series has a `color`, `name`, `renderer` (such as `line` or
`area`), and a `data` array of points with `x` (an ISO 8601 timestamp) and `y`
(the value).

## Download a saved visual as CSV

<CodeGroup>
  ```shell Endpoint theme={null}
  GET /api/v2/saved_visuals/{id}/csv
  ```
</CodeGroup>

Returns the visual's data as CSV.
