This endpoint provides a ranked breakdown of the most significant underlying positions in a fund portfolio, expressed as a percentage of total net assets. It is typically used to show portfolio concentration and exposure to individual securities.
Asset Type Compatibility
- Mutual funds: Returns a list of top holdings when holdings disclosure data is available.
- ETFs: Returns a list of top holdings when holdings disclosure data is available.
- Stocks: The request can be executed because all assets share a unified symbol universe, but it returns an empty result set. This indicates that the asset does not represent a portfolio of holdings, nor is it a request error.
When to Use This Endpoint
- Display the largest positions held by an ETF or mutual fund.
- Analyze portfolio concentration and issuer exposure.
- Support transparency features such as “Top Holdings” tables on asset pages.
- Compare the overlap between funds based on their most extensive constituents.
Request Parameters
v1/holdings/top-holdings
Asset identifier (ticker symbol).
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": ["holding_name", "like", "Amazon%"]Optional sorting configuration for result items. Each sorting setup is defined as [selector, desc]:
selector- Metric used for sorting (e.g., holding_percent).desc- Sorting direction (true for descending, false for ascending).
Sortings can be combined using ,.
Example:
"sort_by": [
{
"selector": "holding_percent",
"desc": true
}
]Maximum number of matched items returned.
Pagination offset (0-based).
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/holdings/top-holdings" \
--header "Content-Type: application/json" \
--header "Authorization: Bearer <API_TOKEN>" \
-d '{
"symbol": "SPY",
"limit": 10,
"offset": 0,
"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/holdings/top-holdings";
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", "<API_TOKEN>");
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
var json = @"{
""symbol"": ""SPY"",
""limit"": 10,
""offset"": 0,
""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/holdings/top-holdings",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"Authorization: Bearer <API_TOKEN>"
],
CURLOPT_POSTFIELDS => json_encode(
[
"symbol" => "SPY",
"limit" => 10,
"offset" => 0,
"tag" => "just tag"
]
)
]);
$response = curl_exec($curl);
curl_close($curl);
echo $response;
import urllib.request
import json
url = "https://api.finimpulse.com/v1/holdings/top-holdings"
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer <API_TOKEN>"
}
data = {
"symbol": "SPY",
"limit": 10,
"offset": 0,
"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": "SPY",
"limit": 10,
"offset": 0,
"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/holdings/top-holdings', 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 a paginated list of holdings records for the requested asset.
Pagination Fields
Total number of holdings records available.
Number of holdings returned in the current response.
Array of top holding records. Each record represents a single underlying security held by the fund.
Record Fields
Ticker symbol of the underlying holding.
Full name of the underlying security.
Weight of the holding as a proportion of the total fund assets.
{
"task_id": "b12aede3-ca61-4f03-8a2a-cf52a5e57722",
"status_code": 20000,
"status_message": "OK",
"cost": 0.0004,
"data": {
"symbol": "SPY",
"limit": 10,
"offset": 0,
"filters": [
"holding_name",
"like",
"Amazon%"
],
"tag": "just_tag",
"sort_by": [
{
"selector": "holding_percent",
"desc": true
}
]
},
"result": {
"total_count": 1,
"items_count": 1,
"items": [
{
"holding_symbol": "AMZN",
"holding_name": "Amazon.com Inc",
"holding_percent": 0.0383224
}
]
}
}Notes
- Holdings weights may not sum to exactly one due to rounding, partial disclosure, or excluded minor positions.
- Percentages are expressed as decimal fractions.
- Full calculation methodology and field definitions are documented in the Glossary.
