Company Valuation (FinBridge DB)
get_valuationGet the latest valuation snapshot for one KR or US company from the local finbridge database: market cap (latest close x shares) with PER, PBR, PSR, ROE, debt ratio, and 3-year revenue/net-income CAGR, joined to the company's latest annual fundamentals. Includes a plain-language interpretation and 1-2 same-market percentile hints (PER cheapness, ROE rank). Computed by the nightly valuation ingest job.
Share counts: KR uses exact listed shares from the data.go.kr feed; US approximates diluted shares as net_income / eps_diluted. PER prefers price / eps_diluted, falling back to market_cap / net_income. Any ratio whose denominator is null or <= 0 is returned as null.
Args:
company: US ticker (e.g. 'AAPL'), KR 6-digit stock code (e.g. '005930'), or company name. Resolution priority: exact ticker > 6-digit code > exact name > partial name (multiple partial matches return a candidate-list error).
response_format: 'markdown' (default) or 'json'
Returns: {company: {name, source, ticker|stock_code}, as_of, fiscal_year, currency, price, shares, market_cap, per, pbr, psr, roe, debt_ratio, rev_cagr_3y, ni_cagr_3y, peer_context: {market, per_percentile, roe_percentile}, interpretation}. Ratios are plain numbers; roe/debt_ratio/CAGR are in percent.
Examples:
{company: '005930'} -> Samsung Electronics PER/PBR/ROE plus "PER in the cheapest N% of the KR market"
{company: 'AAPL'} -> Apple valuation snapshot with US-market percentiles
Caveats: PER/PBR/PSR/ROE/debt are dimensionless same-currency ratios — no FX conversion is applied; market_cap keeps the listing currency. KR fundamentals are K-IFRS and US are US-GAAP, so cross-market comparisons are approximate. This is snapshot data (not real-time) and not investment advice.
Use when: assessing one company's valuation/quality at a glance, or comparing it to its own market. Don't use for many-company ranking (use screen_companies / query_db) or raw statements (get_dart_financials / get_edgar_financials). Errors: unknown company -> no-match or candidate-list error; 'no valuation snapshot' -> the valuation ingest job has not produced a row for this company (needs a price and latest-annual fundamentals).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| company | Yes | US ticker (e.g. 'AAPL'), KR 6-digit stock code (e.g. '005930'), or company name | |
| response_format | No | 'markdown' for a table + interpretation, 'json' for compact machine-readable output | markdown |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pbr | No | ||
| per | No | ||
| psr | No | ||
| roe | No | ||
| as_of | No | ||
| price | No | ||
| shares | No | ||
| company | Yes | ||
| currency | No | ||
| debt_ratio | No | ||
| market_cap | No | ||
| ni_cagr_3y | No | ||
| updated_at | No | ||
| fiscal_year | No | ||
| rev_cagr_3y | No | ||
| peer_context | No | ||
| interpretation | No |