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

# Get Chart Configuration

> Returns the chart configuration including supported resolutions and capabilities. This endpoint provides information about what chart features are available, such as supported time resolutions (1S, 5S, 1, 5, 15, 30, 60, 240, 1D, 1W, 1M), search capabilities, and other charting features supported by the API.



## OpenAPI

````yaml https://spec.speakeasy.com/aries/aries/aries-trading-platform-api-with-code-samples get /v1/chart/config
openapi: 3.0.3
info:
  title: Aries Trading Platform API
  description: >-
    Complete API documentation for the Aries trading platform including user
    management, authentication, account management, order management, market
    data, and analytics
  contact:
    name: Aries Financial
    email: dev@aries.com
  version: 1.0.0
servers:
  - url: https://api.tradearies.dev
    description: Production server
security: []
tags:
  - name: Accounts
    description: Account management endpoints for positions, orders, and balances
  - name: Analytics
    description: >-
      Analytics endpoints for market data analysis including top gainers,
      losers, volume leaders, sector analysis, analyst ratings, market breadth,
      and net inflow
  - name: Authentication
    description: User authentication endpoints
  - name: Calendars
    description: Calendar endpoints for economic events and historical data
  - name: Market Data
    description: >-
      Market data endpoints for symbol search, real-time data access, and equity
      details
  - name: Orders
    description: >-
      Order management endpoints for placing, updating, canceling, and
      previewing orders
  - name: Users
    description: User management endpoints
  - name: Health
    description: Service health endpoints
paths:
  /v1/chart/config:
    get:
      tags:
        - Chart
      summary: Get Chart Configuration
      description: >-
        Returns the chart configuration including supported resolutions and
        capabilities. This endpoint provides information about what chart
        features are available, such as supported time resolutions (1S, 5S, 1,
        5, 15, 30, 60, 240, 1D, 1W, 1M), search capabilities, and other charting
        features supported by the API.
      operationId: getChartConfig
      responses:
        '200':
          description: Chart configuration retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ChartConfig'
              example:
                supported_resolutions:
                  - 1S
                  - 5S
                  - 10S
                  - 15S
                  - 30S
                  - '1'
                  - '5'
                  - '15'
                  - '30'
                  - '60'
                  - '240'
                  - 1D
                  - 1W
                  - 1M
                supports_group_request: false
                supports_marks: false
                supports_search: true
                supports_timescale_marks: false
                supports_time: false
        '401':
          description: Unauthorized - invalid authentication
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - BearerAuth: []
      x-codeSamples:
        - lang: python
          label: Python (SDK)
          source: |-
            from finance_dev import FinanceDev, models
            import os


            with FinanceDev(
                security=models.Security(
                    client_id=os.getenv("FINANCEDEV_CLIENT_ID", ""),
                    client_secret=os.getenv("FINANCEDEV_CLIENT_SECRET", ""),
                ),
            ) as fd_client:

                res = fd_client.chart.get_chart_config()

                # Handle response
                print(res)
        - lang: java
          label: Java (SDK)
          source: >-
            package hello.world;


            import java.lang.Exception;

            import org.openapis.openapi.AriesJava;

            import org.openapis.openapi.models.errors.ErrorResponse;

            import
            org.openapis.openapi.models.operations.GetChartConfigResponse;


            public class Application {

                public static void main(String[] args) throws ErrorResponse, Exception {

                    AriesJava sdk = AriesJava.builder()
                            .bearerAuth(System.getenv().getOrDefault("BEARER_AUTH", ""))
                        .build();

                    GetChartConfigResponse res = sdk.chart().get()
                            .call();

                    if (res.chartConfig().isPresent()) {
                        // handle response
                    }
                }
            }
components:
  schemas:
    ChartConfig:
      type: object
      properties:
        supported_resolutions:
          type: array
          items:
            type: string
          description: List of supported time resolutions for charts
          example:
            - 1S
            - 5S
            - '1'
            - '5'
            - '15'
            - '30'
            - '60'
            - '240'
            - 1D
            - 1W
            - 1M
        supports_group_request:
          type: boolean
          description: Whether the API supports group requests
        supports_marks:
          type: boolean
          description: Whether the API supports marks on charts
        supports_search:
          type: boolean
          description: Whether the API supports symbol search
        supports_timescale_marks:
          type: boolean
          description: Whether the API supports timescale marks
        supports_time:
          type: boolean
          description: Whether the API supports time endpoint
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
          description: Error message
        codes:
          type: array
          items:
            type: object
            properties:
              code:
                type: string
                description: Error code
              description:
                type: string
                description: Error description
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````