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

# Get tradingview symbol info

> **Limit: 10 requests per 1 second per IP address**

`GET /v1/tv/symbol_info`




## OpenAPI

````yaml orderly.openapi get /v1/tv/symbol_info
openapi: 3.0.1
info:
  title: EVM
  description: ''
  version: 1.0.0
servers:
  - url: https://api.orderly.org
    description: Mainnet
  - url: https://testnet-api.orderly.org
    description: Testnet
security: []
tags:
  - name: public
  - name: private
paths:
  /v1/tv/symbol_info:
    get:
      tags:
        - public
      summary: Get tradingview symbol info
      description: |
        **Limit: 10 requests per 1 second per IP address**

        `GET /v1/tv/symbol_info`
      parameters:
        - name: group
          in: query
          description: ''
          required: true
          example: ''
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TvSymbolResponse'
      deprecated: false
components:
  schemas:
    TvSymbolResponse:
      type: object
      required:
        - bar-fillgaps
        - bar-source
        - bar-transform
        - base-currency
        - currency
        - description
        - exchange-listed
        - exchange-traded
        - expiration
        - fractional
        - has-daily
        - has-intraday
        - has-no-volume
        - has-weekly-and-monthly
        - intraday-multipliers
        - is-cfd
        - isin
        - minmovement
        - minmovement2
        - pointvalue
        - pricescale
        - root
        - root-description
        - s
        - session-extended
        - session-postmarket
        - session-premarket
        - session-regular
        - supported-resolutions
        - symbol
        - ticker
        - timezone
        - type
        - wkn
      properties:
        s:
          type: string
        symbol:
          type: array
          items:
            type: string
        description:
          type: array
          items:
            type: string
        currency:
          type: array
          items:
            type: string
        base-currency:
          type: array
          items:
            oneOf:
              - type: string
        exchange-listed:
          type: array
          items:
            type: string
        exchange-traded:
          type: array
          items:
            type: string
        minmovement:
          type: array
          items:
            type: integer
        minmovement2:
          type: array
          items:
            type: integer
        fractional:
          type: array
          items:
            type: boolean
        pricescale:
          type: array
          items:
            type: integer
        root:
          type: array
          items:
            oneOf:
              - type: string
        root-description:
          type: array
          items:
            oneOf:
              - type: string
        has-intraday:
          type: array
          items:
            type: boolean
        has-no-volume:
          type: array
          items:
            type: boolean
        type:
          type: array
          items:
            type: string
        is-cfd:
          type: array
          items:
            type: boolean
        ticker:
          type: array
          items:
            type: string
        timezone:
          type: array
          items:
            type: string
        session-regular:
          type: array
          items:
            type: string
        session-extended:
          type: array
          items:
            type: string
        session-premarket:
          type: array
          items:
            oneOf:
              - type: string
        session-postmarket:
          type: array
          items:
            oneOf:
              - type: string
        supported-resolutions:
          type: array
          items:
            type: array
            items:
              type: string
        has-daily:
          type: array
          items:
            type: boolean
        intraday-multipliers:
          type: array
          items:
            type: array
            items:
              type: string
        has-weekly-and-monthly:
          type: array
          items:
            type: boolean
        pointvalue:
          type: array
          items:
            oneOf:
              - type: integer
              - type: number
        expiration:
          type: array
          items:
            oneOf:
              - type: integer
        bar-source:
          type: array
          items:
            type: string
        bar-transform:
          type: array
          items:
            type: string
        bar-fillgaps:
          type: array
          items:
            type: string
        isin:
          type: array
          items:
            type: string
        wkn:
          type: array
          items:
            type: string

````