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

# Danh sách báo cáo tài chính

> GET /v1/fa/{ticker}/statements — lấy chỉ số tài chính

Lấy chỉ số báo cáo tài chính cho một mã công ty.

<CardGroup cols={2}>
  <Card title="Chỉ số tài chính" icon="circle-check">
    Dùng cho trang dữ liệu cơ bản và phân tích.
  </Card>

  <Card title="Bộ lọc kỳ báo cáo" icon="circle-check">
    Lọc theo năm, quý và loại báo cáo.
  </Card>
</CardGroup>

## Trường hợp sử dụng

* Tạo trang dữ liệu cơ bản của công ty.
* So sánh chỉ số tài chính theo kỳ.
* Dùng cho quy trình phân tích tài chính.

## Tham số quan trọng

* `ticker`: mã công ty.
* `type`: bộ lọc loại báo cáo.
* `year` và `quarter`: bộ lọc kỳ báo cáo.


## OpenAPI

````yaml openapi/openapi.vi.yaml GET /v1/fa/{ticker}/statements
openapi: 3.0.3
info:
  title: Vero Data Hub API
  version: 1.0.0
  description: >-
    REST API cho dữ liệu thị trường, dữ liệu tham chiếu, dữ liệu cơ bản, quỹ, dữ
    liệu vĩ mô, tin tức và độ mới dữ liệu.
servers:
  - url: https://api-gw.verolabs.co
    description: Base URL của API
security:
  - ApiKeyAuth: []
tags:
  - name: reference
  - name: tick
  - name: candles
  - name: fx
  - name: bonds
  - name: macro
  - name: sentiment
  - name: calendar
  - name: funds
  - name: fa
  - name: news
  - name: ops
paths:
  /v1/fa/{ticker}/statements:
    get:
      tags:
        - fa
      summary: Danh sách báo cáo tài chính
      parameters:
        - name: ticker
          in: path
          required: true
          schema:
            type: string
            example: FPT
        - name: type
          in: query
          schema:
            type: string
            enum:
              - IS
              - BS
              - CF
              - CTCB
              - TSSL
              - CCTSVV
              - ROAROE
            example: IS
        - name: year
          in: query
          schema:
            type: integer
            example: 2025
        - name: quarter
          in: query
          schema:
            type: integer
            minimum: 0
            maximum: 4
            example: 4
        - $ref: '#/components/parameters/Limit'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Statement'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '503':
          $ref: '#/components/responses/Unavailable'
components:
  parameters:
    Limit:
      name: limit
      in: query
      schema:
        type: integer
        minimum: 1
        maximum: 10000
        default: 1000
        example: 100
  schemas:
    Statement:
      type: object
      properties:
        ticker:
          type: string
        fiscal_year:
          type: integer
        fiscal_quarter:
          type: integer
        statement_type:
          type: string
        metric_code:
          type: string
        metric_label:
          type: string
          nullable: true
        value:
          type: number
          format: double
          nullable: true
        observed_at:
          type: string
          format: date-time
    Problem:
      type: object
      required:
        - type
        - title
        - status
      properties:
        type:
          type: string
          format: uri
          example: invalid-param
        title:
          type: string
          example: Tham số truy vấn không hợp lệ
        status:
          type: integer
          example: 400
        detail:
          type: string
          example: cần có tham số "from"
        instance:
          type: string
        request_id:
          type: string
  responses:
    BadRequest:
      description: Tham số yêu cầu không hợp lệ.
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Problem'
    Unauthorized:
      description: Thiếu hoặc sai API key.
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Problem'
    NotFound:
      description: Không tìm thấy tài nguyên
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Problem'
    Unavailable:
      description: API tạm thời không sẵn sàng.
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Problem'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY
      description: API key được cấp cho tài khoản của bạn.

````