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

# ETF profile

> Get general information about an ETF, including its name, industry, aum, fee rates, dividend rates and other details.



## OpenAPI

````yaml reference/securities/securities.yaml GET /securities/etf/profile
openapi: 3.1.0
info:
  title: Securities master reference
  description: >-
    Query general information about US stocks, including company name, sector,
    industry, market cap, financials, key trading statistics
  version: 1.0.0
servers:
  - url: https://openapi.ainvest.com/open
    description: Production environment
security:
  - bearerAuth: []
tags:
  - name: Securities
    description: Provides reference information about US stocks
    externalDocs:
      url: https://docs.ainvest.com/reference/securities
paths:
  /securities/etf/profile:
    get:
      tags:
        - Securities
      summary: Get general information about an ETF
      description: >-
        Get general information about an ETF, including its name, industry, aum,
        fee rates, dividend rates and other details.
      operationId: getEtfProfile
      parameters:
        - name: ticker
          in: query
          required: true
          description: US stock market ticker symbol of the ETF, e.g. SPY, QQQ, etc.
          schema:
            type: string
      responses:
        '200':
          description: Successful response in standard envelope.
          content:
            application/json:
              schema:
                $schema: http://json-schema.org/draft-04/schema#
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/EtfProfile'
                    type: object
                  status_code:
                    type: number
                    description: Status code, `0` for success
                  status_msg:
                    type: string
                    description: Status message, `success` for success
        '400':
          description: Validation error, i.e. no stocks found or parameter is not specified
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                status_code: 4012
                status_msg: Invalid param
components:
  schemas:
    EtfProfile:
      type: object
      properties:
        ticker:
          type: string
          description: US stock market ticker symbol, e.g. AAPL, TSLA, etc.
        exchange:
          type: string
          description: >-
            Stock exchange where the ETF is listed, uses [internal
            codes](/reference/codes)
        name:
          type: string
          description: Full name of the fund
        description:
          type: string
          description: Short summary of the fund, its investment strategy, and objectives
        issuer:
          type: string
          description: Name of the company that issues the ETF
        logo_url:
          type: string
          description: URL to the logo of the ETF issuer
        inception_date:
          type: string
          description: Date when the ETF was first issued, format YYYY-MM-DD
        aum:
          type: number
          description: Total assets under management in the ETF, in dollars
        nav:
          type: number
          description: Net asset value of the ETF, in dollars
        nav_last_updated:
          type: string
          description: Date when the NAV was last updated, format YYYY-MM-DD
        expense_ratio:
          type: number
          description: Annual expense to assets under management ratio
        leverage:
          type: number
          description: >-
            Leverage ratio of the ETF, i.e. how much the fund is leveraged
            compared to its assets
        website_url:
          type: string
          description: URL to the official website of the ETF
        div_frequency:
          type: string
          description: >-
            Frequency of dividend payments, e.g. `Weekly`, `Quarterly`,
            `Monthly`, etc.
        industry:
          type: string
          description: Industry of the ETF, e.g. `Technology`, `Healthcare`, etc.
    Error:
      type: object
      properties:
        status_code:
          type: integer
          description: Business status code
        status_msg:
          type: string
          description: Error message
      required:
        - status_code
        - status_msg
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Bearer authentication header of the form `Bearer <token>`, where
        `<token>` is your key. [Get the key
        here](https://www.ainvest.com/business/developer-manage/)

````