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

# Catalog

> Trigger a background refresh of the Paradime data catalog from Python to sync the latest lineage and metadata using the Catalog module of the paradime-io SDK.

### Overview

<Info>
  These examples authenticate with an **account API key** (`api_secret="prdm_cmp_..."` plus `workspace_uid`), which requires `paradime-io` 6.0.0 or later. Legacy **workspace API keys** (`api_key` + `api_secret`) are still supported. See Getting Started.
</Info>

The Catalog module lets you trigger a refresh of the Paradime catalog.

### Refresh the catalog

Triggers a background refresh of the Paradime catalog.

<ResponseField name="Returns" type="None">
  This method returns nothing.
</ResponseField>

```python theme={"system"}
from paradime import Paradime

paradime = Paradime(api_endpoint="API_ENDPOINT", api_secret="prdm_cmp_...", workspace_uid="WORKSPACE_UID")

paradime.catalog.refresh()
```


## Related topics

- [Catalog](/products/code-ide/command-panel/docs-preview.md)
- [Catalog Tool](/products/dino-ai/tools-and-features/catalog-tool.md)
- [Catalog CLI](/developers/paradime-cli/catalog-cli.md)
- [Data Catalog](/products/data-catalog/index.md)
- [Paradime Refresh Catalog](/products/bolt/creating-schedules/command-settings/paradime-refresh-catalog.md)
