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

# Symbols

> Access the processed list of available trading pairs.

## Import

```ts theme={null}
import { AssetPairs } from '@krono/core'
```

## Usage

Access the array of all available symbols, sorted by their liquidity rank (top N) and label.

```ts theme={null}
// Get all loaded symbols
const options = assetPairs.symbols;

options.forEach(opt => {
  console.log(opt.displayLabel); // e.g. "BTC/USD"
});
```

## Return Type

```ts theme={null}
SymbolOption[]
```

The `SymbolOption` interface contains metadata for the UI, including display labels, icons, and normalized asset names.
