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

# SymbolResponse

> Symbol metadata for charting integrations (name, ticker, pricescale, supported resolutions).

### TypeScript shape

```ts theme={null}
interface SymbolResponse {
  currency_code: string;
  description: string;
  name: string;
  original_currency_code: string;
  pricescale: number;
  ticker: string;
  supported_resolutions: string[];
}
```

<ResponseField name="currency_code" type="String!">Currency code.</ResponseField>
<ResponseField name="description" type="String!">Symbol description.</ResponseField>
<ResponseField name="name" type="String!">Display name.</ResponseField>
<ResponseField name="original_currency_code" type="String!">Original currency code.</ResponseField>
<ResponseField name="pricescale" type="Float!">Price scale factor for charting.</ResponseField>
<ResponseField name="ticker" type="String!">Ticker string.</ResponseField>
<ResponseField name="supported_resolutions" type="[String!]!">Supported charting resolutions (e.g. 1, 5, 60, 1D).</ResponseField>
