The /v1/summary endpoint is the most comprehensive single-call snapshot in FinImpulse. It aggregates a broad set of fields used across Summary, Profile, Statistics & Risk, and fund performance views. Use it when you need fast, accurate, high-coverage data for a ticker without orchestrating multiple endpoints.
Asset Type Compatibility
The returned field set varies by asset class.
- Stocks — Returns a company snapshot: profile and classification, real-time/regular-market pricing, dividends, valuation multiples, share statistics, ownership, analyst targets, and high-level financial highlights.
- ETFs — Returns a fund snapshot: description/objective, NAV/yield/AUM, trailing return series, category fields, and portfolio exposure breakdown (sector weights). Company-specific fields are generally not applicable.
- Mutual funds — Returns a fund snapshot: description/objective, fees and Morningstar fields (when available), trailing returns and category comparisons, and portfolio exposure breakdown. Real-time trading fields can be unavailable.
This endpoint uses a unified schema across stocks, ETFs, and mutual funds. Fields that are not relevant for a given asset type are returned as null (or empty strings in some legacy feed cases).
When to Use This Endpoint
- Retrieve a full ticker summary in a single call (fast entry into dashboards, widgets, and AI flows).
- Populate the Asset Summary view (header, price block, key ratios, profile excerpt, and highlights).
- Provide quick, accurate data for ticker autocomplete and post-selection details (after /search).
- Support cross-asset comparisons where available (e.g., USD-normalized amounts, fund returns, and standard ratios).
- Feed downstream analytics pipelines that need a broad snapshot without multiple joins.
Request Parameters
v1/summary
Asset identifier (ticker symbol).
User-defined identifier for the task (max 255 characters).
It is returned in the response data object, allowing you to match results with the corresponding request. It does not affect API processing or filtering logic.
curl --location "https://api.finimpulse.com/v1/summary" \
--header "Content-Type: application/json" \
--header "Authorization: Bearer <API_TOKEN>" \
-d '{
"symbol": "NVDA",
"tag": "just tag"
}'
using System.Net.Http;
using System.Net.Http.Headers;
using System.Text;
var client = new HttpClient();
var url = "https://api.finimpulse.com/v1/summary";
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", "<API_TOKEN>");
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
var json = @"{
""symbol"": ""NVDA"",
""tag"": ""just tag""
}";
var content = new StringContent(json, Encoding.UTF8, "application/json");
var response = await client.PostAsync(url, content);
var result = await response.Content.ReadAsStringAsync();
Console.WriteLine(result);
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.finimpulse.com/v1/summary",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"Authorization: Bearer <API_TOKEN>"
],
CURLOPT_POSTFIELDS => json_encode(
[
"symbol" => "NVDA",
"tag" => "just tag"
]
)
]);
$response = curl_exec($curl);
curl_close($curl);
echo $response;
import urllib.request
import json
url = "https://api.finimpulse.com/v1/summary"
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer <API_TOKEN>"
}
data = {
"symbol": "NVDA",
"tag": "just tag"
}
req = urllib.request.Request(url,
data=json.dumps(data).encode("utf-8"),
headers=headers,
method="POST")
with urllib.request.urlopen(req) as response:
result = json.loads(response.read().decode("utf-8"))
print(result)
const https = require('https');
const data = JSON.stringify({
"symbol": "NVDA",
"tag": "just tag"
});
const options = {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer <API_TOKEN>',
'Content-Length': Buffer.byteLength(data)
}
};
const req = https.request('https://api.finimpulse.com/v1/summary', options, (res) => {
let body = '';
res.on('data', chunk => body += chunk);
res.on('end', () => console.log(JSON.stringify(JSON.parse(body), null, 2)));
});
req.on('error', (e) => console.error(e));
req.write(data);
req.end();
Response
The response returns a single summary object for the requested symbol. Below, its fields are grouped by functional area.
Because the /summary is unified across asset types, empty/null values do not indicate an error. They reflect asset-specific applicability and/or upstream coverage for that dataset.
Identity & Classification
Core identification and classification data for the asset.
Asset symbol (ticker).
Asset type classification returned by the provider (e.g., equity, etf, mutualfund).
Trading currency for the asset.
Reporting currency used for financial statement metrics (stock).
Fund category label (provider taxonomy).
Fund category name used for trailing/category comparisons.
Fund family/sponsor name.
Legal structure/type (e.g., Exchange Traded Fund).
Address & Contact
Location and contact information. Primarily applicable to stocks.
Address line 1 (or primary address string when provided as a single line).
City.
State or region.
Postal code.
Country.
Primary phone number.
Official website URL.
Investor relations website URL (stocks).
Sector & Industry Classification
Industry taxonomy and sector classification used for grouping, filtering, and analytics. Mainly applicable to stocks.
Sector name.
Normalized sector key.
Display-friendly sector label.
Industry name.
Normalized industry key.
Display-friendly industry label.
Description & Organization
Long-form company description (stocks) or investment objective summary (funds).
Number of full-time employees.
Date used as inception/founding metadata in the upstream feed.
Fund inception date (ETFs and mutual funds).
Governance & Risk Indicators
These fields are primarily applicable to stocks.
Audit risk score.
Board risk score.
Compensation risk score.
Shareholder rights risk score.
Overall governance risk score.
Governance dataset reference date.
Compensation dataset reference date.
Market Price & Trading
Previous close price.
Market open price (stock and ETF).
Day low price (stock and ETF).
Day high price (stock and ETF).
Previous close for the regular market session.
Regular session open price (stock and ETF).
Regular session low price (stock and ETF).
Regular session high price (stock and ETF).
Trading volume (stock and ETF).
Trading volume for the regular market session (stock and ETF).
Average volume (provider-defined window).
Average volume over the last 10 trading days.
Alias of average_volume_10days in some feeds.
Current bid price (stock and ETF).
Current ask price (stock and ETF).
Bid size (shares/units) where available (stock and ETF).
Ask size (shares/units) where available (stock and ETF).
Provider price precision hint (decimal places).
Current price for a stock (provider field; often regular market price).
Net asset value price (NAV) for an ETF when available.
Fund distribution yield (ETFs and mutual funds, when available).
Price Ranges
52-week low price.
52-week high price.
All-time low price (provider-defined based on available history).
All-time high price (provider-defined based on available history).
50-day average price.
200-day average price.
Dividends & Distributions
Availability depends on asset type (primarily applicable to dividend-paying stocks and funds).
Forward annual dividend rate (provider estimate).
Forward dividend yield (as a fraction, not percent).
Trailing annual dividend/distribution rate.
Trailing annual dividend/distribution yield (fraction).
Ex-dividend date.
Last dividend/distribution amount.
Last dividend date.
Five-year average dividend yield (provider).
Dividend payout ratio.
Valuation & Multiples
High-level valuation indicators, used to assess relative pricing and market expectations.
Market capitalization (stocks).
Enterprise value.
Trailing price-to-earnings ratio.
Forward price-to-earnings ratio.
Price-to-sales (TTM).
Book value per share.
Price-to-book ratio (provider; for funds can be holdings weighted).
Enterprise value to revenue ratio.
Enterprise value to EBITDA ratio.
Methodology tag for some derived valuation fields (e.g., GAAP/nonGAAP).
Shares & Ownership
Float shares.
Shares outstanding.
Implied shares outstanding (provider derived).
Shares sold short.
Shares short in the prior month.
Reference date for shares_short_prior_month.
Short interest settlement/reference date.
Short shares as a fraction of shares outstanding.
Short ratio (days to cover).
Short shares as a fraction of float shares.
Insider ownership fraction.
Institutional ownership fraction.
Alias/duplicate insider ownership fraction.
Alias/duplicate institutional ownership fraction.
Institutions' ownership as a fraction of float.
Number of institutional holders in the provider dataset.
Beta vs benchmark (provider).
3-year beta for funds where available.
5-year beta for funds where available.
Corporate Actions
Last stock split factor (e.g., "10:1").
Last stock split date as UNIX timestamp (seconds).
Fiscal Dates & Reporting Periods
Key fiscal timeline markers used to align financial metrics. These fields do not apply to funds.
Last fiscal year end date.
Next fiscal year end date.
Most recent quarter end date (MRQ).
Earnings & Growth (Stocks)
Quarterly earnings growth (YoY) as a fraction.
Earnings growth (provider timeframe) as a fraction.
Revenue growth (provider timeframe) as a fraction.
Net income available to common shareholders.
Trailing earnings per share (EPS).
Forward EPS estimate (provider).
Financial Highlights (Stocks)
Total cash and cash equivalents.
Cash and cash equivalents per share.
EBITDA.
Total debt.
Quick ratio.
Current ratio.
Total revenue (provider timeframe, typically TTM).
Debt-to-equity ratio.
Revenue per share.
Return on assets (ROA) as a fraction.
Return on equity (ROE) as a fraction.
Gross profit.
Free cash flow.
Operating cash flow.
Profit margin as a fraction.
Gross margin as a fraction.
EBITDA margin as a fraction.
Operating margin as a fraction.
Analyst Coverage (Stocks)
Analyst target high price.
Analyst target low price.
Analyst target mean price.
Analyst target median price.
Mean recommendation score (provider scale). Lower is typically more bullish depending on provider scale.
Recommendation label (e.g., strong_buy), provider-defined taxonomy.
Number of analyst opinions included in recommendation/targets.
Fund Size & Fee-related Fields
Total net assets/AUM, where available.
Annual report expense ratio (fund fee).
Annual holdings turnover (fraction).
Last capital gains distribution amount, where available.
Morningstar overall rating (stars), where available.
Morningstar risk rating where available.
Fund Performance - Trailing Returns
Year-to-date return (provider).
Year-to-date return (alternate/percentage field in provider feed).
Five-year average return (provider).
One-year total return (provider).
Three-year total return (provider).
Trailing YTD return.
Trailing 1-month return.
Trailing 3-month return.
Trailing 1-year return.
Trailing 3-year return.
Trailing 5-year return.
Trailing 10-year return.
Return during last bull market period (provider-defined).
Return during last bear market period (provider-defined).
Category trailing YTD return.
Category trailing 1-month return.
Category trailing 3-month return.
Category trailing 1-year return.
Category trailing 3-year return.
Category trailing 5-year return.
Category trailing 10-year return.
Category return during last bull market (provider-defined).
Category return during last bear market (provider-defined).
Load-adjusted 1-year return (mutual funds).
Load-adjusted 3-year return (mutual funds).
Load-adjusted 5-year return (mutual funds).
Load-adjusted 10-year return (mutual funds).
Fund Ranks and Ratings
Rank in category for YTD return (provider).
Rank in category for 1-month return.
Rank in category for 3-month return.
Rank in category for 1-year return.
Rank in category for 3-year return.
Rank in category for 5-year return.
Morningstar return rating where available.
Fund risk rating where available (provider-defined scale).
Number of years with positive returns in the evaluated window.
Number of years with negative returns in the evaluated window.
Best 1-year total return in the evaluated period.
Best 3-year total return in the evaluated period.
Worst 1-year total return in the evaluated period.
Worst 3-year total return in the evaluated period.
Fund Holdings - Exposure Breakdown
Portfolio allocation to cash.
Portfolio allocation to equities.
Portfolio allocation to bonds.
Portfolio allocation to other asset classes.
Portfolio allocation to preferred shares.
Portfolio allocation to convertibles.
Holdings-weighted P/E for the fund portfolio.
Holdings-weighted P/B for the fund portfolio.
Holdings-weighted P/S for the fund portfolio.
Holdings-weighted P/CF for the fund portfolio.
Median market cap of holdings (provider).
Holdings-weighted 3-year earnings growth (provider).
Sector weight - Real Estate.
Sector weight - Consumer Cyclical.
Sector weight - Basic Materials.
Sector weight - Consumer Defensive.
Sector weight - Technology.
Sector weight - Communication Services.
Sector weight - Financial Services.
Sector weight - Utilities.
Sector weight - Industrials.
Sector weight - Energy.
Sector weight - Healthcare.
Estimates & Earnings Calendar (Stocks)
Current quarter EPS estimate (provider).
Quarter label for the estimate (e.g., “4Q”).
Calendar quarter label (e.g., "4Q2025").
Year component for the estimate.
Fiscal quarter label (e.g., "4Q2026").
Next earnings date/time.
Indicates whether earnings_date is estimated.
Market Performance Deltas (Stocks)
52-week price change (fraction).
S&P 500 52-week change (fraction) used for comparison (provider field; not a benchmark series).
Valuation Measures - Internal Snapshot (Stocks)
Enterprise value from valuation measures dataset. May differ from enterprise_value due to dataset timing/methodology.
EV/EBITDA ratio from valuation measures dataset.
EV/Revenue ratio from valuation measures dataset.
Forward P/E ratio from valuation measures dataset.
Market cap from valuation measures dataset.
Price-to-book ratio from valuation measures dataset.
P/E ratio from valuation measures dataset.
PEG ratio from valuation measures dataset.
Price-to-sales ratio from valuation measures dataset.
Metadata
Timestamp when this summary record was inserted/updated in FinImpulse storage.
Provider period label used for some fund sub-blocks (often an empty string).
Number of insider buy transactions in the provider window (stocks).
Total shares bought by insiders in the provider window (stocks).
Insider buys as a fraction of insider shares (stocks).
Number of insider sell transactions in the provider window (stocks).
Total shares sold by insiders in the provider window (stocks).
Insider sells as a fraction of insider shares (stocks).
Total insider transactions count (buy + sell) in the provider window (stocks).
Net insider shares (buys minus sells) in the provider window (stocks).
Net insider shares as a fraction of insider shares (stocks).
Total insider shares (provider; stocks).
{
"task_id": "603e849d-fc60-4337-91df-8e7b1fc7447d",
"status_code": 20000,
"status_message": "OK",
"cost": 0.0023,
"data": {
"symbol": "NVDA",
"tag": "just tag"
},
"result": {
"symbol": "NVDA",
"quote_type": "equity",
"currency": "USD",
"address_1": "2788 San Tomas Expressway",
"city": "Santa Clara",
"state": "CA",
"zip": "95051",
"country": "United States",
"phone": "408 486 2000",
"website": "https://www.nvidia.com",
"industry": "Semiconductors",
"industry_key": "semiconductors",
"industry_disp": "Semiconductors",
"sector": "Technology",
"sector_key": "technology",
"sector_disp": "Technology",
"long_business_summary": "NVIDIA Corporation, a computing infrastructure company, provides graphics and compute and networking solutions in the United States, Singapore, Taiwan, China, Hong Kong, and internationally. The Compute & Networking segment includes its Data Centre accelerated computing platforms and artificial intelligence solutions and software; networking; automotive platforms and autonomous and electric vehicle solutions; Jetson for robotics and other embedded platforms; and DGX Cloud computing services. The Graphics segment offers GeForce GPUs for gaming and PCs, the GeForce NOW game streaming service and related infrastructure, and solutions for gaming platforms; Quadro/NVIDIA RTX GPUs for enterprise workstation graphics; virtual GPU or vGPU software for cloud-based visual and virtual computing; automotive platforms for infotainment systems; and Omniverse software for building and operating industrial AI and digital twin applications. It also customized agentic solutions designed in collaboration with NVIDIA to accelerate enterprise AI adoption. The company's products are used in gaming, professional visualization, data center, and automotive markets. It sells its products to original equipment manufacturers, original device manufacturers, system integrators and distributors, independent software vendors, cloud service providers, consumer internet companies, add-in board manufacturers, distributors, automotive manufacturers and tier-1 automotive suppliers, and other ecosystem participants. The company has a strategic partnership with Siemens Aktiengesellschaft to develop industrial and physical AI solutions for AI-driven innovation to every industry and industrial workflow. NVIDIA Corporation was incorporated in 1993 and is headquartered in Santa Clara, California.",
"full_time_employees": 36000,
"audit_risk": 5,
"board_risk": 9,
"compensation_risk": 4,
"share_holder_rights_risk": 8,
"overall_risk": 8,
"governance_epoch_date": "2026-02-01T00:00:00Z",
"compensation_as_of_epoch_date": "2025-12-31T00:00:00Z",
"ir_website": "http://phx.corporate-ir.net/phoenix.zhtml?c=116466&p=irol-IRHome",
"previous_close": 191.13,
"open": 187.2,
"day_low": 184.88,
"day_high": 190.3,
"regular_market_previous_close": 191.13,
"regular_market_open": 187.2,
"regular_market_day_low": 184.88,
"regular_market_day_high": 190.3,
"dividend_rate": 0.04,
"dividend_yield": 0.0002,
"ex_dividend_date": "2025-12-04T00:00:00Z",
"payout_ratio": 0.0099,
"five_year_avg_dividend_yield": 0.05,
"trailing_pe": 45.829628,
"volume": 160114156,
"regular_market_volume": 160114156,
"average_volume": 181422162,
"average_volume_10days": 163937740,
"average_daily_volume_10_day": 163937740,
"bid": 185.52,
"ask": 185.67,
"bid_size": 500,
"ask_size": 400,
"market_cap": 4519046938624,
"fifty_two_week_low": 86.62,
"fifty_two_week_high": 212.19,
"all_time_high": 212.19,
"all_time_low": 0.033333,
"price_to_sales_trailing_12_months": 24.14769,
"fifty_day_average": 183.9022,
"two_hundred_day_average": 168.1236,
"trailing_annual_dividend_rate": 0.04,
"trailing_annual_dividend_yield": 0.00020928,
"nav_price": null,
"yield": null,
"price_hint": 2,
"enterprise_value": 4460536922112,
"forward_pe": 24.218866,
"profit_margins": 0.53007,
"float_shares": 23330673000,
"shares_outstanding": 24305000000,
"shares_short": 261838673,
"shares_short_prior_month": 264294883,
"shares_short_previous_month_date": "2025-12-15T00:00:00Z",
"date_short_interest": "2026-01-15T00:00:00Z",
"shares_percent_shares_out": 0.0108,
"held_percent_insiders": 0.0433,
"held_percent_institutions": 0.69654,
"short_ratio": 1.64,
"short_percent_of_float": 0.0112,
"beta": 2.314,
"implied_shares_outstanding": 24347000000,
"category": "",
"book_value": 4.892,
"price_to_book": 37.941536,
"fund_family": "",
"legal_type": "",
"last_fiscal_year_end": "2025-01-26T00:00:00Z",
"next_fiscal_year_end": "2026-01-26T00:00:00Z",
"most_recent_quarter": "2025-10-26T00:00:00Z",
"earnings_quarterly_growth": 0.653,
"net_income_to_common": 99198001152,
"trailing_eps": 4.05,
"forward_eps": 7.66386,
"last_split_factor": "10:1",
"last_split_date": "2024-06-10T00:00:00Z",
"enterprise_to_revenue": 23.835,
"enterprise_to_ebitda": 39.58,
"52_week_change": 0.56434894,
"sand_p_52_week_change": 0.15544534,
"last_dividend_value": 0.01,
"last_dividend_date": "2025-12-04T00:00:00Z",
"morning_star_overall_rating": null,
"morning_star_risk_rating": null,
"annual_report_expense_ratio": null,
"beta_3_year": null,
"total_assets": null,
"founded_date": "1999-01-22T14:30:00Z",
"fund_inception_date": null,
"last_cap_gain": null,
"annual_holdings_turnover": null,
"ytd_return": null,
"beta_5_year": null,
"current_price": 185.61,
"target_high_price": 352,
"target_low_price": 140,
"target_mean_price": 253.62138,
"target_median_price": 250,
"recommendation_mean": 1.34375,
"recommendation_key": "strong_buy",
"number_of_analyst_opinions": 58,
"total_cash": 60608000000,
"total_cash_per_share": 2.494,
"ebitda": 112696000512,
"total_debt": 10821999616,
"quick_ratio": 3.605,
"current_ratio": 4.468,
"total_revenue": 187141996544,
"debt_to_equity": 9.102,
"revenue_per_share": 7.668,
"return_on_assets": 0.53528,
"return_on_equity": 1.07359,
"gross_profits": 131092996096,
"free_cashflow": 53282873344,
"operating_cashflow": 83158999040,
"earnings_growth": 0.667,
"revenue_growth": 0.625,
"gross_margins": 0.7005,
"ebitda_margins": 0.60220003,
"operating_margins": 0.63168997,
"fund_category_name": null,
"trailing_ytd": null,
"trailing_one_month": null,
"trailing_three_month": null,
"trailing_one_year": null,
"trailing_three_year": null,
"trailing_five_year": null,
"trailing_ten_year": null,
"trailing_last_bull_mkt": null,
"trailing_last_bear_mkt": null,
"trailing_category_ytd": null,
"trailing_category_one_month": null,
"trailing_category_three_month": null,
"trailing_category_one_year": null,
"trailing_category_three_year": null,
"trailing_category_five_year": null,
"trailing_category_ten_year": null,
"trailing_category_last_bull_mkt": null,
"trailing_category_last_bear_mkt": null,
"load_adjusted_one_year": null,
"load_adjusted_three_year": null,
"load_adjusted_five_year": null,
"load_adjusted_ten_year": null,
"rank_ytd": null,
"rank_one_month": null,
"rank_three_month": null,
"rank_one_year": null,
"rank_three_year": null,
"rank_five_year": null,
"morning_star_return_rating": null,
"ytd_return_pct": null,
"five_yr_avg_return_pct": null,
"num_years_up": null,
"num_years_down": null,
"best_one_yr_total_return": null,
"best_three_yr_total_return": null,
"worst_one_yr_total_return": null,
"worst_three_yr_total_return": null,
"one_year_total_return": null,
"three_year_total_return": null,
"risk_rating": null,
"insiders_percent_held": 0.0433,
"institutions_percent_held": 0.69654,
"institutions_float_percent_held": 0.72807,
"institutions_count": 7010,
"period": "6m",
"buy_info_count": 9,
"buy_info_shares": 4415192,
"buy_percent_insider_shares": 0.004,
"sell_info_count": 43,
"sell_info_shares": 7101141,
"sell_percent_insider_shares": 0.00699999,
"net_info_count": 52,
"net_info_shares": -2685949,
"net_percent_insider_shares": -0.003,
"total_insider_shares": 1052189952,
"cash_position": null,
"stock_position": null,
"bond_position": null,
"other_position": null,
"preferred_position": null,
"convertible_position": null,
"price_to_earnings": null,
"price_to_book_holding": null,
"price_to_sales": null,
"price_to_cashflow": null,
"median_market_cap": null,
"three_year_earnings_growth": null,
"realestate": null,
"consumer_cyclical": null,
"basic_materials": null,
"consumer_defensive": null,
"technology": null,
"communication_services": null,
"financial_services": null,
"utilities": null,
"industrials": null,
"energy": null,
"healthcare": null,
"current_quarter_estimate": 1.52289,
"current_quarter_estimate_date": "4Q",
"current_calendar_quarter": "DatePeriod { Date = 10/01/2025, PeriodType = Quarter }",
"current_quarter_estimate_year": 2025,
"current_fiscal_quarter": "DatePeriod { Date = 10/01/2026, PeriodType = Quarter }",
"earnings_date": "2026-02-25T21:00:00Z",
"is_earnings_date_estimate": false,
"financial_currency": "USD",
"default_methodology": "nongaap",
"valuation_measures_enterprise_value": 2910691390000,
"valuation_measures_enterprises_value_ebitda_ratio": 38.8756,
"valuation_measures_enterprises_value_revenue_ratio": 25.6972,
"valuation_measures_forward_pe_ratio": 28.0899,
"valuation_measures_market_cap": 2938953390000,
"valuation_measures_pb_ratio": 44.597845,
"valuation_measures_pe_ratio": 47.40229,
"valuation_measures_peg_ratio": 0.8605,
"valuation_measures_ps_ratio": 26.355582,
"insert_time": "2026-02-03T14:02:10Z"
}
}Notes
- Some provider feeds return empty strings (”) instead of null for non-applicable text fields, especially for fund address/contact fields.
- Percent-like fields are generally returned as fractions (e.g., 0.02 = 2%).
- If you need guaranteed completeness for a specific functional block (e.g., full financial statements, full holdings, or events), use the dedicated endpoint for that block.
