Skip to main content
GET
/
market
/
company-financial
/
overview
cURL
curl -H "X-FH-APIKEY: $FINHAY_API_KEY" \
  "https://open-api.fhsc.com.vn/market/company-financial/overview?symbol=VNM"
{
  "error_code": "0",
  "message": "success",
  "data": {
    "pe": 16.8,
    "pb": 4.2,
    "ev_ebitda": 12.3,
    "industry": {
      "pe": 18.1,
      "pb": 3.6,
      "ev_ebitda": 13
    },
    "gross_margin": 0.42,
    "roe": 0.25,
    "eps": 4300,
    "dividend_yield": 0.055,
    "nim": null,
    "margin_loan_to_equity_ratio": null,
    "roa": 0.16
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.fhsc.com.vn/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-FH-APIKEY
string
header
required

API key dài hạn của client. Cấu hình 1 lần lúc khởi tạo; có thể wire thẳng vào static setter của SDK tự-gen. Đi kèm với FINHAY_API_SECRET — secret này chỉ dùng ở phía client để tính X-FH-SIGNATURE, không bao giờ gửi qua mạng.

Query Parameters

symbol
string
required

Mã stock (chữ hoa, chữ số).

Example:

"VNM"

Response

Trả về data chứa các chỉ số tài chính của stock; industry chứa giá trị trung bình ngành để so sánh.

Các field chung của envelope trong mọi response của Finhay API.

  • error_code"0" (string) khi thành công, mã khác "0" khi lỗi.
  • message là thông điệp ngắn từ server.
data
object
required

Các chỉ số và tỷ số tài chính quan trọng của 1 mã stock.

error_code
string

"0" khi thành công, khác "0" khi lỗi.

Example:

"0"

message
string

Thông điệp trạng thái dễ đọc.

Example:

"success"