This endpoint powers global asset search, ticker autocomplete, discovery flows, and AI-assisted search scenarios. It returns a normalized set of price, liquidity, performance, and classification fields, allowing different asset types to be ranked and compared in a single response.
When to Use This Endpoint
- Search across stocks, ETFs, and mutual funds in one request.
- Rank assets by size, liquidity, or market relevance.
- Display comparable results across asset types and currencies.
Request Parameters
v1/search
Free-text query (e.g., “NVDA”, “NVIDIA”, partial ticker, partial name).
Controls which asset types are included in the search.
Available types:
stocketfmutualfund
All three parameters are of type string and are optional. If none are provided, all supported asset types are returned.
Example:
"quote_types": ["mutualfund","etf","stock"]A list of ticker symbols to retrieve.
When provided, the response returns only the specified tickers.
Important notes:
- If a symbol does not exist, it is excluded from the results.
- Returns an empty result set if none of the specified symbols are found.
Example:
"symbols": ["NVDA", "SPY", "AAPL"]Pagination offset (0-based).
Maximum number of matched items returned (user-defined).
Optional filter expressions.
Each filter condition is defined as: [field, operator, value]. Conditions can be combined using logical operators and/or.
Supported operators:
Numeric fields:
>- greater than>=- greater than or equal<- less than<=- less than or equal=- equals<>- not equal
String fields:
like– pattern match (requires%as a wildcard)not_like- pattern does not match (requires%as a wildcard)contains- value exists in stringnot_contains- value does not exist in stringstartswith- string starts with valueendswith- string ends with value
% usage examples:
%abc%- matches any string containing "abc"abc%- matches any string starting with "abc"%abc- matches any string ending with "abc"
Example:
"filters": [
"short_name", "contains", "Market"
]Optional sorting configuration for result items. Each sorting setup is defined as [selector, desc]:
selector- Metric used for sorting (e.g., amount_usd).desc- Sorting direction (true for descending, false for ascending).
Sortings can be combined using ,.
Example:
"sort_by": [
{
"selector": "amount_usd",
"desc": true
}
]Indicates whether the company provides public financial statements.
true- the company has public financial reports availablefalse- the company does not have public financial reports
Include tickers with missing names.
true- include tickers even if the company/fund name is missingfalse- exclude tickers without a company/fund name
This parameter determines the filtering logic in the dashboard for tickers with or without company/fund names.
Exclude tickers with available names.
true- exclude tickers with a company/fund namefalse- include tickers with a company/fund name
This parameter determines the filtering logic in the dashboard for tickers with or without company/fund names.
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/search" \
--header "Content-Type: application/json" \
--header "Authorization: Bearer <API_TOKEN>" \
-d '{
"search_text": "fund",
"offset": 0,
"limit": 10,
"has_public_financial_reports": true,
"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/search";
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", "<API_TOKEN>");
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
var json = @"{
""search_text"": ""fund"",
""offset"": 0,
""limit"": 10,
""has_public_financial_reports"": true,
""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/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"Authorization: Bearer <API_TOKEN>"
],
CURLOPT_POSTFIELDS => json_encode(
[
"search_text" => "fund",
"offset" => 0,
"limit" => 10,
"has_public_financial_reports" => true,
"tag" => "just tag"
]
)
]);
$response = curl_exec($curl);
curl_close($curl);
echo $response;
import urllib.request
import json
url = "https://api.finimpulse.com/v1/search"
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer <API_TOKEN>"
}
data = {
"search_text": "fund",
"offset": 0,
"limit": 10,
"has_public_financial_reports": True,
"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({
"search_text": "fund",
"offset": 0,
"limit": 10,
"has_public_financial_reports": true,
"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/search', 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 contains pagination metadata and a list of matched assets.
Pagination Fields
Total number of matching assets.
Token for pagination. Pass it in the next request to fetch the next page.
Format:
"search_after_token": "token_here"Number of items returned.
An array, where each item represents a single exchange-listed instrument.
The same underlying company or fund can appear multiple times if it trades on numerous exchanges or currencies.
Identification Fields
Asset identifier (ticker symbol).
URL of the company or fund logo image.
Asset display name.
Short descriptive name.
Full legal or formal name.
Asset class identifier (stock, etf, mutualfund).
Data source label for the quote (e.g., real-time vs delayed).
Trading & Exchange Info
Trading currency.
Exchange name.
Exchange code.
Exchange time zone name.
Exchange time zone abbreviation.
Exchange time offset in seconds.
Market/country code.
Asset Fundamentals
Sector classification (stocks and some ETFs).
Industry classification.
Company founding date (stocks) or reference date (if available).
Fund inception date (ETFs and mutual funds).
Price Data
Active price during the regular trading session and at market close.
For US-listed assets, returns the closing price during pre-market and post-market hours.
Active price during the regular trading session and at market close, normalized to USD.
For US-listed assets, returns the closing price during pre-market and post-market hours.
Absolute price change for the regular market session in local currency.
Absolute price change for the regular market session, normalized to USD.
Percentage price change for the regular market session.
Timestamp of the last regular market trade.
- During the regular session, reflects the time of the most recent trade at the moment of data collection.
- For US-listed assets, during pre-market and post-market hours, reflects the closing time of the most recent regular session.
Most recent traded price collected at the time indicated by current_price_update_time. May reflect a delay of up to one hour.
Timestamp of the most recent price update (ISO 8601).
Deprecated. This field will be removed on July 30, 2026. Use regular_market_price_change instead.
Absolute price change for the regular market session in local currency.
Deprecated. This field will be removed on July 30, 2026. Use regular_market_price_change_usd instead.
Absolute price change for the regular market session, normalized to USD.
Deprecated. This field will be removed on July 30, 2026. Use regular_market_price_change_percent instead.
Percentage price change for the regular market session.
Volume & Liquidity
Trading volume for the regular market session.
3-month average trading volume.
10-day average trading volume.
Technical Indicators
50-day moving average.
Difference between current price and 50-day average.
Percent difference vs 50-day average.
200-day moving average.
Difference between current price and 200-day average.
Percent difference vs 200-day average.
Lowest price in the last 52 weeks.
Highest price in the previous 52 weeks.
Change from the 52-week low.
Percent change from the 52-week low.
Change from the 52-week high.
Percent change from the 52-week high.
Returns & Performance
Total return over the past year (if available).
Total return over the past three years (if available).
Dividends & Yield
Forward dividend rate.
Forward dividend rate normalized to USD.
Forward dividend yield.
Trailing 12-month dividend rate.
Trailing 12-month dividend rate normalized to USD.
Trailing 12-month dividend yield.
Market Value & Normalization
Market cap in local currency.
USD-normalized market cap.
FX rate used for USD normalization.
Profitability & Margins
Free cash flow margin (FCF Margin).
Net Margin.
Return on Equity (ROE).
Return on Invested Capital (ROIC).
Growth & Risk
Revenue growth.
EPS (Earnings Per Share) growth.
Revenue stability.
Beta.
Debt-to-Equity (D/E).
Metadata
Timestamp of the most recent data update (ISO 8601).
Deprecated. This field will be removed on July 30, 2026. Use current_price_update_time instead.
Timestamp of the most recent price update (ISO 8601).
{
"task_id": "06161534-0022-0001-0000-896f59578c6a",
"status_code": 20000,
"status_message": "OK",
"live": true,
"cost": 0.0084,
"data": {
"limit": 10,
"offset": 0,
"filters": [
"short_name",
"contains",
"Market"
],
"search_text": "fund",
"has_public_financial_reports": true,
"sort_by": [
{
"selector": "amount_usd",
"desc": true
}
],
"quote_types": [
"mutualfund",
"etf",
"stock"
]
},
"result": {
"total_count": 8,
"search_after_token": null,
"items_count": 8,
"items": [
{
"symbol": "EMD",
"display_name": "Western Asset Emerging Markets Debt Fund",
"short_name": "Western Asset Emerging Markets ",
"long_name": "Western Asset Emerging Markets Debt Fund Inc.",
"quote_type": "stock",
"logo": "https://cdn.finimpulse.com/c738b99b-0ba2-338e-ed9f-bc047e9401cf",
"quote_source_name": "Delayed Quote",
"fifty_day_average": 10.5788,
"fifty_day_average_change": 0.03119945,
"fifty_day_average_change_percent": 0.29492432,
"two_hundred_day_average": 10.57845,
"two_hundred_day_average_change": 0.03154945,
"two_hundred_day_average_change_percent": 0.2982427,
"average_daily_volume_3_month": 217903,
"average_daily_volume_10_day": 183700,
"one_year_return": 8.598,
"three_year_return": 20.981,
"currency": "USD",
"current_price_update_time": "2026-06-16T15:27:08Z",
"regular_market_price": 10.61,
"regular_market_price_usd": 10.61,
"regular_market_price_change": -0.04999923,
"regular_market_price_change_usd": -0.04999923,
"regular_market_price_change_percent": -0.47124636,
"regular_market_time": "2026-06-15T20:00:02Z",
"regular_market_volume": 171638,
"current_price": 10.56,
"full_exchange_name": "NYSE",
"exchange": "NYQ",
"exchange_timezone_name": "America/New_York",
"exchange_timezone_short_name": "EDT",
"fifty_two_week_low_change": 1.0099993,
"fifty_two_week_low_change_percent": 10.5208255,
"fifty_two_week_high_change": -0.69000053,
"fifty_two_week_high_change_percent": -6.1061993,
"fifty_two_week_low": 9.6,
"fifty_two_week_high": 11.3,
"trailing_annual_dividend_rate": 1.11,
"trailing_annual_dividend_rate_usd": 1.11,
"trailing_annual_dividend_yield": 10.50142,
"dividend_rate": 1.14,
"dividend_rate_usd": 1.14,
"dividend_yield": 10.79,
"time_offset": -14400,
"market_region": "US",
"sector": "Financial Services",
"industry": "Asset Management",
"amount": 616763968,
"amount_usd": 616763968,
"update_time": "2026-06-15T21:24:35Z",
"price_update_time": "2026-06-16T15:27:08Z",
"usd_rate": null,
"beta": 0.827,
"founded_date": "2003-12-04T14:30:00Z",
"fund_inception_date": null,
"free_cash_flow_margin": 0.25538631,
"return_on_invested_capital": 0,
"net_margin": 0.98664037,
"return_on_equity": 0.11284996,
"debt_to_equity": 0.26644284,
"revenue_stability": 9.30028999655438,
"revenue_growth": "NaN",
"eps_growth": 0.3958829461506461,
"regular_market_change": -0.04999923,
"regular_market_change_usd": -0.04999923,
"regular_market_change_percent": -0.47124636
},
{
"symbol": "EDD",
"display_name": "Morgan Stanley Emerging Markets Domestic Debt Fund",
"short_name": "Morgan Stanley Emerging Markets",
"long_name": "Morgan Stanley Emerging Markets Domestic Debt Fund, Inc.",
"quote_type": "stock",
"logo": "https://cdn.finimpulse.com/79699d77-d10b-3d51-341c-f7eb78a0d721",
"quote_source_name": null,
"fifty_day_average": 5.5238,
"fifty_day_average_change": 0.17619991,
"fifty_day_average_change_percent": 3.1898316,
"two_hundred_day_average": 5.5457,
"two_hundred_day_average_change": 0.15429974,
"two_hundred_day_average_change_percent": 2.782331,
"average_daily_volume_3_month": 373098,
"average_daily_volume_10_day": 366020,
"one_year_return": 12.648,
"three_year_return": 17.526,
"currency": "USD",
"current_price_update_time": "2026-06-16T15:27:06Z",
"regular_market_price": 5.7,
"regular_market_price_usd": 5.7,
"regular_market_price_change": 0.01500034,
"regular_market_price_change_usd": 0.01500034,
"regular_market_price_change_percent": 0.26316392,
"regular_market_time": "2026-06-15T20:00:21Z",
"regular_market_volume": 365006,
"current_price": 5.715,
"full_exchange_name": "NYSE",
"exchange": "NYQ",
"exchange_timezone_name": "America/New_York",
"exchange_timezone_short_name": "EDT",
"fifty_two_week_low_change": 0.7399998,
"fifty_two_week_low_change_percent": 14.91935,
"fifty_two_week_high_change": -0.48000002,
"fifty_two_week_high_change_percent": -7.766991,
"fifty_two_week_low": 4.96,
"fifty_two_week_high": 6.18,
"trailing_annual_dividend_rate": 0,
"trailing_annual_dividend_rate_usd": 0,
"trailing_annual_dividend_yield": 0,
"dividend_rate": 0.51,
"dividend_rate_usd": 0.51,
"dividend_yield": 8.95,
"time_offset": -14400,
"market_region": "US",
"sector": "Financial Services",
"industry": "Asset Management",
"amount": 367399456,
"amount_usd": 367399456,
"update_time": "2026-06-16T08:25:48Z",
"price_update_time": "2026-06-16T15:27:06Z",
"usd_rate": null,
"beta": null,
"founded_date": "2007-04-24T13:30:00Z",
"fund_inception_date": null,
"free_cash_flow_margin": 0.35406834,
"return_on_invested_capital": 0,
"net_margin": 0.9791129,
"return_on_equity": 0.15558012,
"debt_to_equity": 0.13592928,
"revenue_stability": 4.297112794936872,
"revenue_growth": 0.6075189006158477,
"eps_growth": 0.274071979011838,
"regular_market_change": 0.01500034,
"regular_market_change_usd": 0.01500034,
"regular_market_change_percent": 0.26316392
},
{
"symbol": "EMF",
"display_name": null,
"short_name": "Templeton Emerging Markets Fund",
"long_name": "Templeton Emerging Markets Fund",
"quote_type": "stock",
"logo": "https://cdn.finimpulse.com/f3c3a29e-5c78-9ed4-a185-1628176e6751",
"quote_source_name": "Delayed Quote",
"fifty_day_average": 21.2952,
"fifty_day_average_change": 2.8647995,
"fifty_day_average_change_percent": 13.452794,
"two_hundred_day_average": 18.59255,
"two_hundred_day_average_change": 5.5674496,
"two_hundred_day_average_change_percent": 29.944518,
"average_daily_volume_3_month": 46580,
"average_daily_volume_10_day": 44450,
"one_year_return": 72.942,
"three_year_return": 96.263,
"currency": "USD",
"current_price_update_time": "2026-06-16T15:27:23Z",
"regular_market_price": 24.16,
"regular_market_price_usd": 24.16,
"regular_market_price_change": -0.26000023,
"regular_market_price_change_usd": -0.26000023,
"regular_market_price_change_percent": -1.0695196,
"regular_market_time": "2026-06-15T20:00:03Z",
"regular_market_volume": 20348,
"current_price": 23.9,
"full_exchange_name": "NYSE",
"exchange": "NYQ",
"exchange_timezone_name": "America/New_York",
"exchange_timezone_short_name": "EDT",
"fifty_two_week_low_change": 10.45,
"fifty_two_week_low_change_percent": 76.221734,
"fifty_two_week_high_change": -0.29100037,
"fifty_two_week_high_change_percent": -1.1901368,
"fifty_two_week_low": 13.71,
"fifty_two_week_high": 24.451,
"trailing_annual_dividend_rate": 0.88,
"trailing_annual_dividend_rate_usd": 0.88,
"trailing_annual_dividend_yield": 3.727234,
"dividend_rate": 0.96,
"dividend_rate_usd": 0.96,
"dividend_yield": 4.07,
"time_offset": -14400,
"market_region": "US",
"sector": "Financial Services",
"industry": "Asset Management",
"amount": 361141184,
"amount_usd": 361141184,
"update_time": "2026-06-15T21:24:42Z",
"price_update_time": "2026-06-16T15:27:23Z",
"usd_rate": null,
"beta": 0.988,
"founded_date": "1987-02-26T14:30:00Z",
"fund_inception_date": null,
"free_cash_flow_margin": 0,
"return_on_invested_capital": 0,
"net_margin": 0.98784344,
"return_on_equity": 0.12201155,
"debt_to_equity": 0.02138823,
"revenue_stability": 19.630419036973684,
"revenue_growth": -0.13503351116579054,
"eps_growth": -0.12340174990961983,
"regular_market_change": -0.26000023,
"regular_market_change_usd": -0.26000023,
"regular_market_change_percent": -1.0695196
},
{
"symbol": "TEI",
"display_name": null,
"short_name": "Templeton Emerging Markets Inco",
"long_name": "Templeton Emerging Markets Income Fund",
"quote_type": "stock",
"logo": "https://cdn.finimpulse.com/cf684456-b2fa-e3a9-fba5-78419546afad",
"quote_source_name": "Delayed Quote",
"fifty_day_average": 6.391,
"fifty_day_average_change": 0.11900043,
"fifty_day_average_change_percent": 1.8620003,
"two_hundred_day_average": 6.4266,
"two_hundred_day_average_change": 0.08340025,
"two_hundred_day_average_change_percent": 1.2977352,
"average_daily_volume_3_month": 169879,
"average_daily_volume_10_day": 112200,
"one_year_return": 11.473,
"three_year_return": 26.408,
"currency": "USD",
"current_price_update_time": "2026-06-16T14:43:44Z",
"regular_market_price": 6.51,
"regular_market_price_usd": 6.51,
"regular_market_price_change": 0.04009962,
"regular_market_price_change_usd": 0.04009962,
"regular_market_price_change_percent": 0.615979,
"regular_market_time": "2026-06-15T20:00:02Z",
"regular_market_volume": 138399,
"current_price": 6.5501,
"full_exchange_name": "NYSE",
"exchange": "NYQ",
"exchange_timezone_name": "America/New_York",
"exchange_timezone_short_name": "EDT",
"fifty_two_week_low_change": 0.79000044,
"fifty_two_week_low_change_percent": 13.811196,
"fifty_two_week_high_change": -0.48999977,
"fifty_two_week_high_change_percent": -6.999997,
"fifty_two_week_low": 5.72,
"fifty_two_week_high": 7,
"trailing_annual_dividend_rate": 0.57,
"trailing_annual_dividend_rate_usd": 0.57,
"trailing_annual_dividend_yield": 8.823529,
"dividend_rate": 0.65,
"dividend_rate_usd": 0.65,
"dividend_yield": 10.03,
"time_offset": -14400,
"market_region": "US",
"sector": "Financial Services",
"industry": "Asset Management",
"amount": 307456992,
"amount_usd": 307456992,
"update_time": "2026-06-15T20:39:49Z",
"price_update_time": "2026-06-16T14:43:44Z",
"usd_rate": null,
"beta": 0.716,
"founded_date": "1993-09-23T13:30:00Z",
"fund_inception_date": null,
"free_cash_flow_margin": 0.34061901,
"return_on_invested_capital": 0,
"net_margin": 0.99369233,
"return_on_equity": 0.24117039,
"debt_to_equity": 0.16677181,
"revenue_stability": 4.803366975824558,
"revenue_growth": "NaN",
"eps_growth": 0.4036273365064149,
"regular_market_change": 0.04009962,
"regular_market_change_usd": 0.04009962,
"regular_market_change_percent": 0.615979
},
{
"symbol": "EDF",
"display_name": null,
"short_name": "Stone Harbor Emerging Markets I",
"long_name": "Virtus Stone Harbor Emerging Markets Income Fund",
"quote_type": "stock",
"logo": "https://cdn.finimpulse.com/86ff5abd-930d-854b-ed6d-1cf09a0a6062",
"quote_source_name": "Delayed Quote",
"fifty_day_average": 5.2542,
"fifty_day_average_change": 0.2958002,
"fifty_day_average_change_percent": 5.6297857,
"two_hundred_day_average": 5.0577,
"two_hundred_day_average_change": 0.49230003,
"two_hundred_day_average_change_percent": 9.733674,
"average_daily_volume_3_month": 174861,
"average_daily_volume_10_day": 177850,
"one_year_return": 10.778,
"three_year_return": 30.896,
"currency": "USD",
"current_price_update_time": "2026-06-16T15:27:12Z",
"regular_market_price": 5.55,
"regular_market_price_usd": 5.55,
"regular_market_price_change": 0,
"regular_market_price_change_usd": 0,
"regular_market_price_change_percent": 0,
"regular_market_time": "2026-06-15T20:00:03Z",
"regular_market_volume": 154780,
"current_price": 5.55,
"full_exchange_name": "NYSE",
"exchange": "NYQ",
"exchange_timezone_name": "America/New_York",
"exchange_timezone_short_name": "EDT",
"fifty_two_week_low_change": 0.8300004,
"fifty_two_week_low_change_percent": 17.584755,
"fifty_two_week_high_change": -0.08999967,
"fifty_two_week_high_change_percent": -1.5957389,
"fifty_two_week_low": 4.72,
"fifty_two_week_high": 5.64,
"trailing_annual_dividend_rate": 0,
"trailing_annual_dividend_rate_usd": 0,
"trailing_annual_dividend_yield": 0,
"dividend_rate": 0.72,
"dividend_rate_usd": 0.72,
"dividend_yield": 12.97,
"time_offset": -14400,
"market_region": "US",
"sector": "Financial Services",
"industry": "Asset Management",
"amount": 178236528,
"amount_usd": 178236528,
"update_time": "2026-06-16T10:26:14Z",
"price_update_time": "2026-06-16T15:27:12Z",
"usd_rate": null,
"beta": null,
"founded_date": "2010-12-27T14:30:00Z",
"fund_inception_date": null,
"free_cash_flow_margin": 0.78453197,
"return_on_invested_capital": 0,
"net_margin": 0.98351944,
"return_on_equity": 0.13905697,
"debt_to_equity": 0.19605145,
"revenue_stability": 2.02026277127534,
"revenue_growth": 0.7372582841507243,
"eps_growth": 0.36564783932340417,
"regular_market_change": 0,
"regular_market_change_usd": 0,
"regular_market_change_percent": 0
},
{
"symbol": "MSD",
"display_name": "Morgan Stanley Emerging Markets Debt Fund",
"short_name": "Morgan Stanley Emerging Markets",
"long_name": "Morgan Stanley Emerging Markets Debt Fund, Inc.",
"quote_type": "stock",
"logo": "https://cdn.finimpulse.com/fff433a4-c671-db2e-d813-0efb87aa224e",
"quote_source_name": null,
"fifty_day_average": 7.327,
"fifty_day_average_change": -0.00699996,
"fifty_day_average_change_percent": -0.09553663,
"two_hundred_day_average": 7.43505,
"two_hundred_day_average_change": -0.11504984,
"two_hundred_day_average_change_percent": -1.5473983,
"average_daily_volume_3_month": 95639,
"average_daily_volume_10_day": 113400,
"one_year_return": -6.752,
"three_year_return": 11.585,
"currency": "USD",
"current_price_update_time": "2026-06-16T15:33:30Z",
"regular_market_price": 7.32,
"regular_market_price_usd": 7.32,
"regular_market_price_change": 0.00999975,
"regular_market_price_change_usd": 0.00999975,
"regular_market_price_change_percent": 0.13660863,
"regular_market_time": "2026-06-15T20:00:02Z",
"regular_market_volume": 78824,
"current_price": 7.33,
"full_exchange_name": "NYSE",
"exchange": "NYQ",
"exchange_timezone_name": "America/New_York",
"exchange_timezone_short_name": "EDT",
"fifty_two_week_low_change": 0.41000032,
"fifty_two_week_low_change_percent": 5.9334345,
"fifty_two_week_high_change": -0.6199999,
"fifty_two_week_high_change_percent": -7.808562,
"fifty_two_week_low": 6.91,
"fifty_two_week_high": 7.94,
"trailing_annual_dividend_rate": 0.71,
"trailing_annual_dividend_rate_usd": 0.71,
"trailing_annual_dividend_yield": 9.7796135,
"dividend_rate": 0.65,
"dividend_rate_usd": 0.65,
"dividend_yield": 8.95,
"time_offset": -14400,
"market_region": "US",
"sector": "Financial Services",
"industry": "Asset Management",
"amount": 148093008,
"amount_usd": 148093008,
"update_time": "2026-06-15T21:32:46Z",
"price_update_time": "2026-06-16T15:33:30Z",
"usd_rate": null,
"beta": 0.584,
"founded_date": "1993-07-16T13:30:00Z",
"fund_inception_date": null,
"free_cash_flow_margin": 0,
"return_on_invested_capital": 0,
"net_margin": 0.97445238,
"return_on_equity": 0.12924396,
"debt_to_equity": 0,
"revenue_stability": 8.447734610776058,
"revenue_growth": "NaN",
"eps_growth": 0.11981282526761294,
"regular_market_change": 0.00999975,
"regular_market_change_usd": 0.00999975,
"regular_market_change_percent": 0.13660863
},
{
"symbol": "IHD",
"display_name": null,
"short_name": "Voya Emerging Markets High Inco",
"long_name": "Voya Emerging Markets High Dividend Equity Fund",
"quote_type": "stock",
"logo": "https://cdn.finimpulse.com/4282d79e-6a19-2cb0-cc91-2fca7fdf89f8",
"quote_source_name": "Nasdaq Real Time Price",
"fifty_day_average": 7.3278,
"fifty_day_average_change": 0.5022001,
"fifty_day_average_change_percent": 6.853355,
"two_hundred_day_average": 6.65865,
"two_hundred_day_average_change": 1.17135,
"two_hundred_day_average_change_percent": 17.591403,
"average_daily_volume_3_month": 107255,
"average_daily_volume_10_day": 179090,
"one_year_return": 36.888,
"three_year_return": 45,
"currency": "USD",
"current_price_update_time": "2026-06-16T15:30:59Z",
"regular_market_price": 7.83,
"regular_market_price_usd": 7.83,
"regular_market_price_change": -0.02999973,
"regular_market_price_change_usd": -0.02999973,
"regular_market_price_change_percent": -0.3821622,
"regular_market_time": "2026-06-15T20:00:03Z",
"regular_market_volume": 151238,
"current_price": 7.8,
"full_exchange_name": "NYSE",
"exchange": "NYQ",
"exchange_timezone_name": "America/New_York",
"exchange_timezone_short_name": "EDT",
"fifty_two_week_low_change": 2.15,
"fifty_two_week_low_change_percent": 37.852114,
"fifty_two_week_high_change": -0.31000042,
"fifty_two_week_high_change_percent": -3.8083587,
"fifty_two_week_low": 5.68,
"fifty_two_week_high": 8.14,
"trailing_annual_dividend_rate": 0,
"trailing_annual_dividend_rate_usd": 0,
"trailing_annual_dividend_yield": 0,
"dividend_rate": 0.66,
"dividend_rate_usd": 0.66,
"dividend_yield": 8.43,
"time_offset": -14400,
"market_region": "US",
"sector": "Financial Services",
"industry": "Asset Management",
"amount": 138871776,
"amount_usd": 138871776,
"update_time": "2026-06-16T10:29:33Z",
"price_update_time": "2026-06-16T15:30:59Z",
"usd_rate": null,
"beta": null,
"founded_date": "2011-04-28T13:30:00Z",
"fund_inception_date": null,
"free_cash_flow_margin": 0,
"return_on_invested_capital": null,
"net_margin": 0.9709894,
"return_on_equity": 0.08789163,
"debt_to_equity": 0,
"revenue_stability": 579.5879354333385,
"revenue_growth": "NaN",
"eps_growth": 0.46050433096590093,
"regular_market_change": -0.02999973,
"regular_market_change_usd": -0.02999973,
"regular_market_change_percent": -0.3821622
},
{
"symbol": "JMM",
"display_name": null,
"short_name": "Nuveen Multi-Market Income Fund",
"long_name": "Nuveen Multi-Market Income Fund",
"quote_type": "stock",
"logo": "https://cdn.finimpulse.com/5eec1ba4-8ccb-de5f-4fca-15634c6ea9ea",
"quote_source_name": "Nasdaq Real Time Price",
"fifty_day_average": 5.8306,
"fifty_day_average_change": -0.03059959,
"fifty_day_average_change_percent": -0.5248104,
"two_hundred_day_average": 6.067,
"two_hundred_day_average_change": -0.26699972,
"two_hundred_day_average_change_percent": -4.4008527,
"average_daily_volume_3_month": 8526,
"average_daily_volume_10_day": 17970,
"one_year_return": -7.2,
"three_year_return": 0.346,
"currency": "USD",
"current_price_update_time": "2026-06-16T15:30:54Z",
"regular_market_price": 5.8,
"regular_market_price_usd": 5.8,
"regular_market_price_change": -0.01899957,
"regular_market_price_change_usd": -0.01899957,
"regular_market_price_change_percent": -0.3252517,
"regular_market_time": "2026-06-16T15:21:06Z",
"regular_market_volume": 2318,
"current_price": 5.8,
"full_exchange_name": "NYSE",
"exchange": "NYQ",
"exchange_timezone_name": "America/New_York",
"exchange_timezone_short_name": "EDT",
"fifty_two_week_low_change": 0.13000011,
"fifty_two_week_low_change_percent": 2.2927709,
"fifty_two_week_high_change": -0.7199998,
"fifty_two_week_high_change_percent": -11.042941,
"fifty_two_week_low": 5.67,
"fifty_two_week_high": 6.52,
"trailing_annual_dividend_rate": 0.348,
"trailing_annual_dividend_rate_usd": 0.348,
"trailing_annual_dividend_yield": 5.980409,
"dividend_rate": 0.35,
"dividend_rate_usd": 0.35,
"dividend_yield": 5.98,
"time_offset": -14400,
"market_region": "US",
"sector": "Financial Services",
"industry": "Asset Management",
"amount": 54881632,
"amount_usd": 54881632,
"update_time": "2026-06-16T15:30:53Z",
"price_update_time": "2026-06-16T15:30:54Z",
"usd_rate": null,
"beta": 0.37,
"founded_date": "1988-12-28T14:30:00Z",
"fund_inception_date": null,
"free_cash_flow_margin": 0.37822738,
"return_on_invested_capital": 0,
"net_margin": 0.95283912,
"return_on_equity": 0.05094978,
"debt_to_equity": 0.28947699,
"revenue_stability": 11.229083739218991,
"revenue_growth": "NaN",
"eps_growth": -0.1176741267016792,
"regular_market_change": -0.01899957,
"regular_market_change_usd": -0.01899957,
"regular_market_change_percent": -0.3252517
}
]
}
}Notes
- USD-normalized fields enable consistent cross-market sorting and ranking across all markets.
- Some fields may be null depending on asset type and data coverage. It does not indicate an error; it reflects asset-specific applicability.
All metric names, field definitions, and calculation details are defined in the Glossary.
