**NOTE**: This endpoint is **experimental** and might change in the future. The endpoint name and the exact format of the returned data may change between Prometheus versions. The **exact metadata returned** by this endpoint is an implementation detail and may change in future Prometheus versions.
The following endpoint returns the list of currently loaded TSDB blocks and their metadata.
```
GET /api/v1/status/tsdb/blocks
```
This endpoint returns the following information for each block:
- `ulid`: Unique ID of the block.
- `minTime`: Minimum timestamp (in milliseconds) of the block.
- `maxTime`: Maximum timestamp (in milliseconds) of the block.
- `stats`:
- `numSeries`: Number of series in the block.
- `numSamples`: Number of samples in the block.
- `numChunks`: Number of chunks in the block.
- `compaction`:
- `level`: The compaction level of the block.
- `sources`: List of ULIDs of source blocks used to compact this block.