# Get ETF Info

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v3/etf/info:
    get:
      summary: Get ETF Info
      deprecated: false
      description: |-
        :::info[Description]
        This interface returns leveraged token information.
        :::
      tags:
        - Abandoned Endpoints/Margin Trading
        - MAIN
        - ALL
      parameters:
        - name: currency
          in: query
          description: |
            ETF Currency: If empty, query all currencies
          required: false
          example: BTCUP
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        currency:
                          type: string
                          description: ETF Currency
                        netAsset:
                          type: string
                          description: Net worth
                        targetLeverage:
                          type: string
                          description: Target leverage
                        actualLeverage:
                          type: string
                          description: Actual leverage
                        issuedSize:
                          type: string
                          description: The amount of currency issued
                        basket:
                          type: string
                          description: Basket information
                      x-apidog-orders:
                        - currency
                        - netAsset
                        - targetLeverage
                        - actualLeverage
                        - issuedSize
                        - basket
                      required:
                        - currency
                        - netAsset
                        - targetLeverage
                        - actualLeverage
                        - issuedSize
                        - basket
                required:
                  - code
                  - data
                x-apidog-orders:
                  - code
                  - data
              example:
                code: '200000'
                data:
                  - currency: BTCUP
                    netAsset: '33.846'
                    targetLeverage: 2-4
                    actualLeverage: '2.1648'
                    issuedSize: '107134.87655291'
                    basket: 118.324559 XBTUSDTM
          headers: {}
          x-apidog-name: OK
      security: []
      x-abandon: abandon
      x-domain: Spot
      x-api-channel: Public
      x-api-permission: 'NULL'
      x-api-rate-limit-pool: Public
      x-sdk-service: Margin
      x-sdk-sub-service: Market
      x-sdk-method-name: getETFInfo
      x-sdk-method-description: This interface returns leveraged token information.
      x-api-rate-limit-weight: 3
      x-apidog-folder: Abandoned Endpoints/Margin Trading
      x-apidog-status: released
      x-run-in-apidog: https://www.kucoin.com/docs-new/web/project/345089/apis/api-3470191-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://api.kucoin.com
    description: OPEN
security: []

```