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

# Security Info

> The `Security Info` method allows you to retrieve detailed information about multiple securities identified by ticker and exchange code or by GUID.

### Request Body

- `security_ids` (required): An array of security identifiers.
    
    Each element can contain one of the following options:
    
    - `ticker_code`:
        
        - `ticker` (string): The security's ticker symbol.
            
        - `exchange_code` (string): The exchange code.
            
    - `guid` (string): The security's Global Unique Identifier.
        

### Response

- `securities`: An array of objects containing information about each requested security.
    
    - `status`:
        
        - `code` (integer): Operation status code (`0` - success).
            
        - `message` (string): Status message.
            
        - `details` (array): Additional details.
            
    - `security_id`: The security identifier corresponding to the request.
        
    - `security_info`: Detailed information about the security.
        
        - `ticker` (string): The security's ticker symbol.
            
        - `names` (map): Names in different languages.
            
        - `exchange_code` (string): The exchange code.
            
        - `cfi` (string): ISO 10962 (CFI) code.
            
        - `isin` (string): International Securities Identification Number (ISIN).
            
        - `status` (integer): Security status (1 - active).
            
        - `price_precision` (integer): Price precision (number of decimal places).
            
        - `tick_size`: Price tick size.
            
            - `value` (string): The value.
                
            - `scale` (string): The scale (divisor).
                
        - `asset_base`: Base asset.
            
            - `id`:
                
                - `code` (string): Asset code.
                    
                - `asset_class_code` (string): Asset class code.
                    
            - `icon_url` (string): URL of the asset's icon.
                
            - `background_color` (string): Background color.
                
            - `company`: Company information.
                
                - `name` (string): Company name.
                    
                - `industries` (array): Industries.
                    
        - `asset_quote`: Quote asset.
            
            - `id`:
                
                - `code` (string): Asset code.
                    
                - `asset_class_code` (string): Asset class code.
                    
        - `classes`: Security classes.
            
        - `guid` (string): Global Unique Identifier.
            
        - `exchange_alias` (string): Exchange alias.
            
        - `price_precisions`: Array of price precision settings for different ranges.
            

---

## JSON Schemas

### Request Schema

``` json
{
  "type": "object",
  "properties": {
    "security_ids": {
      "type": "array",
      "items": {
        "oneOf": [
          {
            "type": "object",
            "properties": {
              "ticker_code": {
                "type": "object",
                "properties": {
                  "ticker": { "type": "string" },
                  "exchange_code": { "type": "string" }
                },
                "required": ["ticker", "exchange_code"]
              }
            },
            "required": ["ticker_code"]
          },
          {
            "type": "object",
            "properties": {
              "guid": { "type": "string" }
            },
            "required": ["guid"]
          }
        ]
      }
    }
  },
  "required": ["security_ids"]
}

 ```

### Response Schema

``` json
{
  "type": "object",
  "properties": {
    "securities": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "status": {
            "$ref": "#/definitions/Status"
          },
          "security_id": {
            "$ref": "#/definitions/SecurityId"
          },
          "security_info": {
            "$ref": "#/definitions/SecurityInfo"
          }
        }
      }
    }
  },
  "definitions": {
    "Status": {
      "type": "object",
      "properties": {
        "code": { "type": "integer" },
        "message": { "type": "string" },
        "details": { "type": "array", "items": {} }
      }
    },
    "SecurityId": {
      "oneOf": [
        {
          "type": "object",
          "properties": {
            "ticker_code": {
              "type": "object",
              "properties": {
                "ticker": { "type": "string" },
                "exchange_code": { "type": "string" }
              },
              "required": ["ticker", "exchange_code"]
            }
          }
        },
        {
          "type": "object",
          "properties": {
            "guid": { "type": "string" }
          }
        }
      ]
    },
    "SecurityInfo": {
      "type": "object",
      "properties": {
        "ticker": { "type": "string" },
        "names": {
          "type": "object",
          "additionalProperties": { "type": "string" }
        },
        "exchange_code": { "type": "string" },
        "cfi": { "type": "string" },
        "isin": { "type": "string" },
        "status": { "type": "integer" },
        "price_precision": { "type": "integer" },
        "tick_size": { "$ref": "#/definitions/Decimal" },
        "asset_base": { "$ref": "#/definitions/Asset" },
        "asset_quote": { "$ref": "#/definitions/Asset" },
        "classes": {
          "type": "array",
          "items": { "$ref": "#/definitions/SecurityClass" }
        },
        "guid": { "type": "string" },
        "exchange_alias": { "type": "string" },
        "price_precisions": {
          "type": "array",
          "items": { "$ref": "#/definitions/PricePrecision" }
        }
      }
    },
    "Decimal": {
      "type": "object",
      "properties": {
        "value": { "type": "string" },
        "scale": { "type": "string" }
      }
    },
    "Asset": {
      "type": "object",
      "properties": {
        "id": { "$ref": "#/definitions/AssetId" },
        "icon_url": { "type": "string" },
        "background_color": { "type": "string" },
        "company": { "$ref": "#/definitions/Company" }
      }
    },
    "AssetId": {
      "type": "object",
      "properties": {
        "code": { "type": "string" },
        "asset_class_code": { "type": "string" }
      }
    },
    "Company": {
      "type": "object",
      "properties": {
        "name": { "type": "string" },
        "industries": {
          "type": "array",
          "items": { "$ref": "#/definitions/Industry" }
        }
      }
    },
    "Industry": {
      "type": "object",
      "properties": {
        "name": { "type": "string" },
        "industries": {
          "type": "array",
          "items": {}
        }
      }
    },
    "SecurityClass": {
      "type": "object",
      "properties": {
        "name": { "type": "string" },
        "parent_class": { "$ref": "#/definitions/SecurityClass" },
        "top_level_class": { "$ref": "#/definitions/SecurityClass" }
      }
    },
    "PricePrecision": {
      "type": "object",
      "properties": {
        "price_from": { "$ref": "#/definitions/Decimal" },
        "price_to": { "$ref": "#/definitions/Decimal" },
        "precision": { "type": "integer" }
      }
    }
  }
}

 ```

---

## Usage Recommendations

- **Authorization**: Always use a valid `access_token` in the `accesstoken` header.
    
- **Error Handling**: Check the `status` field in the response to determine the success of the operation.
    
- **Identifiers**: Use `guid` for unique identification of securities when possible.
    

---

## Frequently Asked Questions

### What should I do if I receive an "Invalid access token" error?

Ensure you are using a valid `access_token` obtained through the [Auth API](#). Tokens may expire, in which case you need to obtain a new one using the `refresh_token`.

### Can I request information about a single security?

Yes, you can specify a single identifier in the `security_ids` array.

### How can I get a list of available exchanges and their codes?

Refer to the relevant documentation or API that provides information about exchanges.

---

## Additional Resources

- [Auth API Documentation](#)
    
- [ISO 10962 (CFI)](https://en.wikipedia.org/wiki/ISO_10962)
    
- [ISO 6166 (ISIN)](https://en.wikipedia.org/wiki/International_Securities_Identification_Number)
    

---



## OpenAPI

````yaml post /takeprofit.reference.external.security.v1.SecurityInfoApi.ListSecurities
openapi: 3.0.0
info:
  title: TakeProfit Partner API
  description: TakeProfit Partner API documentation
  version: 0.1-beta
servers:
  - url: https://api.dev.tpinf.in
    description: Development environment
  - url: https://api.takeprofit.com
    description: '''Production environment'''
security: []
tags:
  - name: Partner API
  - name: Credentials
    description: >-
      The Credentials API allows partners to authenticate and obtain access
      tokens required for accessing other secured endpoints. This documentation
      provides details on how to use the authentication endpoints, including
      request and response formats.


      ## Overview


      The Authentication API provides two primary endpoints:


      1. **Create Token**: Authenticates a partner using their API key and
      returns an access token and a refresh token.
          
      2. **Refresh Token**: Generates a new access token using a valid refresh
      token.
  - name: Link
    description: >-
      The Link API allows partners to manage the linkage between their own
      securities and the securities provided by TakeProfit. This includes
      creating, retrieving, and deleting links between securities.
  - name: Reference API
    description: Set of APIs to get reference info such as exchanges, securities.
  - name: Marketdata API
    description: Set of APIs to get marketdata such as historical candles
  - name: Widgets
    description: |-
      Describe how to use TakeProfit Backend API from Widgets.

      Each request to API must has 'accesstoken' header with valid JWT-token.

      Describe here how to obtain JWT for widget.
paths:
  /takeprofit.reference.external.security.v1.SecurityInfoApi.ListSecurities:
    post:
      tags:
        - Reference API
      summary: Security Info
      description: >-
        The `Security Info` method allows you to retrieve detailed information
        about multiple securities identified by ticker and exchange code or by
        GUID.


        ### Request Body


        - `security_ids` (required): An array of security identifiers.
            
            Each element can contain one of the following options:
            
            - `ticker_code`:
                
                - `ticker` (string): The security's ticker symbol.
                    
                - `exchange_code` (string): The exchange code.
                    
            - `guid` (string): The security's Global Unique Identifier.
                

        ### Response


        - `securities`: An array of objects containing information about each
        requested security.
            
            - `status`:
                
                - `code` (integer): Operation status code (`0` - success).
                    
                - `message` (string): Status message.
                    
                - `details` (array): Additional details.
                    
            - `security_id`: The security identifier corresponding to the request.
                
            - `security_info`: Detailed information about the security.
                
                - `ticker` (string): The security's ticker symbol.
                    
                - `names` (map): Names in different languages.
                    
                - `exchange_code` (string): The exchange code.
                    
                - `cfi` (string): ISO 10962 (CFI) code.
                    
                - `isin` (string): International Securities Identification Number (ISIN).
                    
                - `status` (integer): Security status (1 - active).
                    
                - `price_precision` (integer): Price precision (number of decimal places).
                    
                - `tick_size`: Price tick size.
                    
                    - `value` (string): The value.
                        
                    - `scale` (string): The scale (divisor).
                        
                - `asset_base`: Base asset.
                    
                    - `id`:
                        
                        - `code` (string): Asset code.
                            
                        - `asset_class_code` (string): Asset class code.
                            
                    - `icon_url` (string): URL of the asset's icon.
                        
                    - `background_color` (string): Background color.
                        
                    - `company`: Company information.
                        
                        - `name` (string): Company name.
                            
                        - `industries` (array): Industries.
                            
                - `asset_quote`: Quote asset.
                    
                    - `id`:
                        
                        - `code` (string): Asset code.
                            
                        - `asset_class_code` (string): Asset class code.
                            
                - `classes`: Security classes.
                    
                - `guid` (string): Global Unique Identifier.
                    
                - `exchange_alias` (string): Exchange alias.
                    
                - `price_precisions`: Array of price precision settings for different ranges.
                    

        ---


        ## JSON Schemas


        ### Request Schema


        ``` json

        {
          "type": "object",
          "properties": {
            "security_ids": {
              "type": "array",
              "items": {
                "oneOf": [
                  {
                    "type": "object",
                    "properties": {
                      "ticker_code": {
                        "type": "object",
                        "properties": {
                          "ticker": { "type": "string" },
                          "exchange_code": { "type": "string" }
                        },
                        "required": ["ticker", "exchange_code"]
                      }
                    },
                    "required": ["ticker_code"]
                  },
                  {
                    "type": "object",
                    "properties": {
                      "guid": { "type": "string" }
                    },
                    "required": ["guid"]
                  }
                ]
              }
            }
          },
          "required": ["security_ids"]
        }

         ```

        ### Response Schema


        ``` json

        {
          "type": "object",
          "properties": {
            "securities": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "status": {
                    "$ref": "#/definitions/Status"
                  },
                  "security_id": {
                    "$ref": "#/definitions/SecurityId"
                  },
                  "security_info": {
                    "$ref": "#/definitions/SecurityInfo"
                  }
                }
              }
            }
          },
          "definitions": {
            "Status": {
              "type": "object",
              "properties": {
                "code": { "type": "integer" },
                "message": { "type": "string" },
                "details": { "type": "array", "items": {} }
              }
            },
            "SecurityId": {
              "oneOf": [
                {
                  "type": "object",
                  "properties": {
                    "ticker_code": {
                      "type": "object",
                      "properties": {
                        "ticker": { "type": "string" },
                        "exchange_code": { "type": "string" }
                      },
                      "required": ["ticker", "exchange_code"]
                    }
                  }
                },
                {
                  "type": "object",
                  "properties": {
                    "guid": { "type": "string" }
                  }
                }
              ]
            },
            "SecurityInfo": {
              "type": "object",
              "properties": {
                "ticker": { "type": "string" },
                "names": {
                  "type": "object",
                  "additionalProperties": { "type": "string" }
                },
                "exchange_code": { "type": "string" },
                "cfi": { "type": "string" },
                "isin": { "type": "string" },
                "status": { "type": "integer" },
                "price_precision": { "type": "integer" },
                "tick_size": { "$ref": "#/definitions/Decimal" },
                "asset_base": { "$ref": "#/definitions/Asset" },
                "asset_quote": { "$ref": "#/definitions/Asset" },
                "classes": {
                  "type": "array",
                  "items": { "$ref": "#/definitions/SecurityClass" }
                },
                "guid": { "type": "string" },
                "exchange_alias": { "type": "string" },
                "price_precisions": {
                  "type": "array",
                  "items": { "$ref": "#/definitions/PricePrecision" }
                }
              }
            },
            "Decimal": {
              "type": "object",
              "properties": {
                "value": { "type": "string" },
                "scale": { "type": "string" }
              }
            },
            "Asset": {
              "type": "object",
              "properties": {
                "id": { "$ref": "#/definitions/AssetId" },
                "icon_url": { "type": "string" },
                "background_color": { "type": "string" },
                "company": { "$ref": "#/definitions/Company" }
              }
            },
            "AssetId": {
              "type": "object",
              "properties": {
                "code": { "type": "string" },
                "asset_class_code": { "type": "string" }
              }
            },
            "Company": {
              "type": "object",
              "properties": {
                "name": { "type": "string" },
                "industries": {
                  "type": "array",
                  "items": { "$ref": "#/definitions/Industry" }
                }
              }
            },
            "Industry": {
              "type": "object",
              "properties": {
                "name": { "type": "string" },
                "industries": {
                  "type": "array",
                  "items": {}
                }
              }
            },
            "SecurityClass": {
              "type": "object",
              "properties": {
                "name": { "type": "string" },
                "parent_class": { "$ref": "#/definitions/SecurityClass" },
                "top_level_class": { "$ref": "#/definitions/SecurityClass" }
              }
            },
            "PricePrecision": {
              "type": "object",
              "properties": {
                "price_from": { "$ref": "#/definitions/Decimal" },
                "price_to": { "$ref": "#/definitions/Decimal" },
                "precision": { "type": "integer" }
              }
            }
          }
        }

         ```

        ---


        ## Usage Recommendations


        - **Authorization**: Always use a valid `access_token` in the
        `accesstoken` header.
            
        - **Error Handling**: Check the `status` field in the response to
        determine the success of the operation.
            
        - **Identifiers**: Use `guid` for unique identification of securities
        when possible.
            

        ---


        ## Frequently Asked Questions


        ### What should I do if I receive an "Invalid access token" error?


        Ensure you are using a valid `access_token` obtained through the [Auth
        API](#). Tokens may expire, in which case you need to obtain a new one
        using the `refresh_token`.


        ### Can I request information about a single security?


        Yes, you can specify a single identifier in the `security_ids` array.


        ### How can I get a list of available exchanges and their codes?


        Refer to the relevant documentation or API that provides information
        about exchanges.


        ---


        ## Additional Resources


        - [Auth API Documentation](#)
            
        - [ISO 10962 (CFI)](https://en.wikipedia.org/wiki/ISO_10962)
            
        - [ISO 6166
        (ISIN)](https://en.wikipedia.org/wiki/International_Securities_Identification_Number)
            

        ---
      parameters:
        - name: accesstoken
          in: header
          schema:
            type: string
          description: JWT access token
          example: YOUR_ACCESS_TOKEN_HERE
      requestBody:
        content:
          application/json:
            schema:
              type: object
              example:
                security_ids:
                  - ticker_code:
                      ticker: TSLA
                      exchange_code: BATS
                  - ticker_code:
                      ticker: AAPL
                      exchange_code: BATS
                  - ticker_code:
                      ticker: ETH/USDT
                      exchange_code: CXBNCE
                  - ticker_code:
                      ticker: BIT/USD
                      exchange_code: CXKRKN
                  - guid: ca820109-b49a-4835-8422-96698eb65b53
      responses:
        '200':
          description: OK
          headers:
            grpc-accept-encoding:
              schema:
                type: string
                example: identity,deflate,gzip
            grpc-encoding:
              schema:
                type: string
                example: identity
            content-type:
              schema:
                type: string
                example: application/json
            date:
              schema:
                type: string
                example: Wed, 06 Nov 2024 06:43:52 GMT
            x-envoy-upstream-service-time:
              schema:
                type: integer
                example: '6'
            access-control-expose-headers:
              schema:
                type: string
                example: grpc-status, grpc-message, x-grpc-details, my-test
            my-little-header:
              schema:
                type: string
                example: my-test
            access-control-allow-origin:
              schema:
                type: string
                example: '*'
            grpc-status:
              schema:
                type: integer
                example: '0'
            grpc-message:
              schema:
                type: string
                example: OK
            content-length:
              schema:
                type: integer
                example: '3350'
            server:
              schema:
                type: string
                example: envoy
          content:
            application/json:
              schema:
                type: object
              examples:
                example-0:
                  summary: BATS Security Info
                  value:
                    securities:
                      - status:
                          code: 0
                          message: ''
                          details: []
                        security_id:
                          ticker_code:
                            ticker: TSLA
                            exchange_code: BATS
                        security_info:
                          ticker: TSLA
                          names:
                            en: Tesla, Inc.
                          exchange_code: BATS
                          cfi: MMMXXX
                          isin: US88160R1014
                          status: 1
                          price_precision: 2
                          tick_size:
                            value: '1'
                            scale: '10000'
                          asset_base:
                            id:
                              code: TSLA
                              asset_class_code: EQUITY
                            icon_url: >-
                              https://cdn.takeprofit.team/reference/stage/icons/cl_tsla_15835_dark.svg
                            background_color: '#ffffff'
                            company:
                              name: Tesla, Inc.
                              industries:
                                - name: Motor Vehicles
                                  industries: []
                          asset_quote:
                            id:
                              code: USD
                              asset_class_code: CURRENCY
                          classes:
                            - name: Common stocks
                              parent_class:
                                name: Equity
                              top_level_class:
                                name: Equity
                          guid: 0e999ee4-f44f-4cb7-a769-6ac37e72f6db
                          exchange_alias: NASDAQ
                          price_precisions:
                            - price_from:
                                value: '0'
                                scale: '0'
                              price_to:
                                value: '1'
                                scale: '0'
                              precision: 4
                            - price_from:
                                value: '1'
                                scale: '0'
                              precision: 2
                      - status:
                          code: 0
                          message: ''
                          details: []
                        security_id:
                          ticker_code:
                            ticker: AAPL
                            exchange_code: BATS
                        security_info:
                          ticker: AAPL
                          names:
                            en: Apple Inc.
                          exchange_code: BATS
                          cfi: MMMXXX
                          isin: US0378331005
                          status: 1
                          price_precision: 2
                          tick_size:
                            value: '1'
                            scale: '10000'
                          asset_base:
                            id:
                              code: AAPL
                              asset_class_code: EQUITY
                            icon_url: >-
                              https://cdn.takeprofit.team/reference/stage/icons/cl_aapl_27246_bright.svg
                            background_color: '#1D1D1F'
                            company:
                              name: Apple, Inc.
                              industries:
                                - name: Telecommunications Equipment
                                  industries: []
                          asset_quote:
                            id:
                              code: USD
                              asset_class_code: CURRENCY
                          classes:
                            - name: Common stocks
                              parent_class:
                                name: Equity
                              top_level_class:
                                name: Equity
                          guid: 6ef11658-5a1c-4baf-9387-d977dcca6129
                          exchange_alias: NASDAQ
                          price_precisions:
                            - price_from:
                                value: '0'
                                scale: '0'
                              price_to:
                                value: '1'
                                scale: '0'
                              precision: 4
                            - price_from:
                                value: '1'
                                scale: '0'
                              precision: 2
                      - status:
                          code: 5
                          message: NOT_FOUND
                          details: []
                        security_id:
                          ticker_code:
                            ticker: XXXDF
                            exchange_code: BATS
                example-1:
                  summary: GUID Example
                  value:
                    securities:
                      - status:
                          code: 0
                          message: ''
                          details: []
                        security_id:
                          guid: 0e999ee4-f44f-4cb7-a769-6ac37e72f6db
                        security_info:
                          ticker: TSLA
                          names:
                            en: Tesla, Inc.
                          exchange_code: BATS
                          cfi: MMMXXX
                          isin: US88160R1014
                          status: 1
                          price_precision: 2
                          tick_size:
                            value: '1'
                            scale: '10000'
                          asset_base:
                            id:
                              code: TSLA
                              asset_class_code: EQUITY
                            icon_url: >-
                              https://cdn.takeprofit.team/reference/stage/icons/cl_tsla_15835_dark.svg
                            background_color: '#ffffff'
                            company:
                              name: Tesla, Inc.
                              industries:
                                - name: Motor Vehicles
                                  industries: []
                          asset_quote:
                            id:
                              code: USD
                              asset_class_code: CURRENCY
                          classes:
                            - name: Common stocks
                              parent_class:
                                name: Equity
                              top_level_class:
                                name: Equity
                          guid: 0e999ee4-f44f-4cb7-a769-6ac37e72f6db
                          exchange_alias: NASDAQ
                          price_precisions:
                            - price_from:
                                value: '0'
                                scale: '0'
                              price_to:
                                value: '1'
                                scale: '0'
                              precision: 4
                            - price_from:
                                value: '1'
                                scale: '0'
                              precision: 2
                example-2:
                  summary: Crypto Security Info
                  value:
                    securities:
                      - status:
                          code: 0
                          message: ''
                          details: []
                        security_id:
                          ticker_code:
                            ticker: BTC/USDT
                            exchange_code: CXBNCE
                        security_info:
                          ticker: BTC/USDT
                          names:
                            en: 'Bitcoin / Tether USD '
                          exchange_code: CXBNCE
                          cfi: IFXXXC
                          status: 1
                          price_precision: 2
                          tick_size:
                            value: '1'
                            scale: '100'
                          ticker_part_main: BTC/USDT
                          asset_base:
                            id:
                              code: BTC
                              asset_class_code: CRYPTO
                            icon_url: >-
                              https://cdn.takeprofit.team/reference/dev/icons/asset_logo_2607.svg
                            icon_base64: >-
                              PD94bWwgdmVyc2lvbj0iMS4wIiA/Pg0KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiI+DQoJPGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4NCgkJPHBhdGggZmlsbD0iI0ZGRiIgZmlsbC1ydWxlPSJub256ZXJvIiBkPSJNMjMuMTg5IDE0LjAyYy4zMTQtMi4wOTYtMS4yODMtMy4yMjMtMy40NjUtMy45NzVsLjcwOC0yLjg0LTEuNzI4LS40My0uNjkgMi43NjVjLS40NTQtLjExNC0uOTItLjIyLTEuMzg1LS4zMjZsLjY5NS0yLjc4M0wxNS41OTYgNmwtLjcwOCAyLjgzOWMtLjM3Ni0uMDg2LS43NDYtLjE3LTEuMTA0LS4yNmwuMDAyLS4wMDktMi4zODQtLjU5NS0uNDYgMS44NDZzMS4yODMuMjk0IDEuMjU2LjMxMmMuNy4xNzUuODI2LjYzOC44MDUgMS4wMDZsLS44MDYgMy4yMzVjLjA0OC4wMTIuMTEuMDMuMTguMDU3bC0uMTgzLS4wNDUtMS4xMyA0LjUzMmMtLjA4Ni4yMTItLjMwMy41MzEtLjc5My40MS4wMTguMDI1LTEuMjU2LS4zMTMtMS4yNTYtLjMxM2wtLjg1OCAxLjk3OCAyLjI1LjU2MWMuNDE4LjEwNS44MjguMjE1IDEuMjMxLjMxOGwtLjcxNSAyLjg3MiAxLjcyNy40My43MDgtMi44NGMuNDcyLjEyNy45My4yNDUgMS4zNzguMzU3bC0uNzA2IDIuODI4IDEuNzI4LjQzLjcxNS0yLjg2NmMyLjk0OC41NTggNS4xNjQuMzMzIDYuMDk3LTIuMzMzLjc1Mi0yLjE0Ni0uMDM3LTMuMzg1LTEuNTg4LTQuMTkyIDEuMTMtLjI2IDEuOTgtMS4wMDMgMi4yMDctMi41Mzh6bS0zLjk1IDUuNTM4Yy0uNTMzIDIuMTQ3LTQuMTQ4Ljk4Ni01LjMyLjY5NWwuOTUtMy44MDVjMS4xNzIuMjkzIDQuOTI5Ljg3MiA0LjM3IDMuMTF6bS41MzUtNS41NjljLS40ODcgMS45NTMtMy40OTUuOTYtNC40Ny43MTdsLjg2LTMuNDVjLjk3NS4yNDMgNC4xMTguNjk2IDMuNjEgMi43MzN6Ii8+DQoJPC9nPg0KPC9zdmc+DQo=
                            background_color: '#F7931A'
                          asset_quote:
                            id:
                              code: USDT
                              asset_class_code: CRYPTO
                            icon_url: >-
                              https://cdn.takeprofit.team/reference/dev/icons/asset_logo_2630.svg
                            icon_base64: >-
                              PD94bWwgdmVyc2lvbj0iMS4wIiA/Pg0KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiI+DQoJPGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4NCgkJPHBhdGggZmlsbD0iI0ZGRiIgZD0iTTE3LjkyMiAxNy4zODN2LS4wMDJjLS4xMS4wMDgtLjY3Ny4wNDItMS45NDIuMDQyLTEuMDEgMC0xLjcyMS0uMDMtMS45NzEtLjA0MnYuMDAzYy0zLjg4OC0uMTcxLTYuNzktLjg0OC02Ljc5LTEuNjU4IDAtLjgwOSAyLjkwMi0xLjQ4NiA2Ljc5LTEuNjZ2Mi42NDRjLjI1NC4wMTguOTgyLjA2MSAxLjk4OC4wNjEgMS4yMDcgMCAxLjgxMi0uMDUgMS45MjUtLjA2di0yLjY0M2MzLjg4LjE3MyA2Ljc3NS44NSA2Ljc3NSAxLjY1OCAwIC44MS0yLjg5NSAxLjQ4NS02Ljc3NSAxLjY1N20wLTMuNTl2LTIuMzY2aDUuNDE0VjcuODE5SDguNTk1djMuNjA4aDUuNDE0djIuMzY1Yy00LjQuMjAyLTcuNzA5IDEuMDc0LTcuNzA5IDIuMTE4IDAgMS4wNDQgMy4zMDkgMS45MTUgNy43MDkgMi4xMTh2Ny41ODJoMy45MTN2LTcuNTg0YzQuMzkzLS4yMDIgNy42OTQtMS4wNzMgNy42OTQtMi4xMTYgMC0xLjA0My0zLjMwMS0xLjkxNC03LjY5NC0yLjExNyIvPg0KCTwvZz4NCjwvc3ZnPg0K
                            background_color: '#26A17B'
                          classes:
                            - name: Spot
                              parent_class:
                                name: Crypto
                              top_level_class:
                                name: Crypto
                          guid: 8c0dd38e-e125-4024-aa5b-3f87b3aa575c
                          exchange_alias: BINANCE
                          price_precisions:
                            - price_from:
                                value: '0'
                                scale: '0'
                              precision: 2
                      - status:
                          code: 0
                          message: ''
                          details: []
                        security_id:
                          ticker_code:
                            ticker: BIT/USD
                            exchange_code: CXKRKN
                        security_info:
                          ticker: BIT/USD
                          names:
                            en: BitDAO / USD
                          exchange_code: CXKRKN
                          cfi: IFXXXC
                          status: 1
                          price_precision: 4
                          tick_size:
                            value: '1'
                            scale: '10000'
                          asset_base:
                            id:
                              code: BIT
                              asset_class_code: CRYPTO
                            icon_url: >-
                              https://cdn.takeprofit.team/reference/dev/icons/asset_logo_19862.svg
                            icon_base64: >-
                              PD94bWwgdmVyc2lvbj0nMS4wJyBlbmNvZGluZz0ndXRmLTgnPz4NCjxzdmcgd2lkdGg9IjQ4IiBoZWlnaHQ9IjQ4IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPg0KICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg4LDgpIj4NCiAgICA8c3ZnIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld2JveD0iMCAwIDUwMCA1MDAiPg0KICAgICAgPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJiaXQiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgNTAwIDUwMCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTAwIDUwMDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KICAgICAgICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZmlsbDojRTY0MDcyO30NCjwvc3R5bGU+DQogICAgICA8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMjUxLjQsNTAwaC04Ni41Yy0xMC42LDAtMTkuMS04LjYtMTkuMS0xOS4xYzAtMTAuNiw4LjYtMTkuMSwxOS4xLTE5LjFoODYuNWM3Ny44LDAsMTQxLjEtNjMuMywxNDEuMS0xNDEuMSAgcy02My4zLTE0MS4xLTE0MS4xLTE0MS4xaC00Ni41Yy0xMC41LDAtMTkuMSw4LjYtMTkuMSwxOS4xczguNiwxOS4xLDE5LjEsMTkuMWg0NS4yYzU2LjYsMCwxMDIuNyw0Ni4xLDEwMi43LDEwMi43ICBjMCw1Ni42LTQ2LjEsMTAyLjctMTAyLjcsMTAyLjdIMTI0LjJjLTMwLjQsMC01NS4xLTI0LjctNTUuMS01NS4xVjE5LjFDNjkuMSw4LjYsNzcuNywwLDg4LjMsMHMxOS4xLDguNiwxOS4xLDE5LjF2MzQ4LjcgIGMwLDkuMyw3LjUsMTYuOCwxNi44LDE2LjhoMTI1LjljMzUuNSwwLDY0LjQtMjguOSw2NC40LTY0LjRzLTI4LjktNjQuNC02NC40LTY0LjRoLTQ1LjJjLTMxLjYsMC01Ny40LTI1LjctNTcuNC01Ny40ICBzMjUuNy01Ny40LDU3LjQtNTcuNGg0Ni41Yzk4LjksMCwxNzkuNCw4MC41LDE3OS40LDE3OS40UzM1MC40LDUwMCwyNTEuNCw1MDB6IiAvPg0KICAgICAgPC9zdmc+DQogICAgPC9zdmc+DQogIDwvZz4NCjwvc3ZnPg0K
                            background_color: '#FFFFFF'
                          asset_quote:
                            id:
                              code: USD
                              asset_class_code: CURRENCY
                          classes:
                            - name: Spot
                              parent_class:
                                name: Crypto
                              top_level_class:
                                name: Crypto
                          guid: 0dd8860a-bf6f-4f65-9860-3ee63ad4c5ad
                          exchange_alias: KRAKEN
                          price_precisions:
                            - price_from:
                                value: '0'
                                scale: '0'
                              precision: 4

````