All URIs are relative to https://api-v2.intrinio.com
| Method | HTTP request | Description |
|---|---|---|
| getAllEtfs | GET /etfs | All ETFs |
| getEtf | GET /etfs/{identifier} | Lookup ETF |
| getEtfAnalytics | GET /etfs/{identifier}/analytics | ETF Analytics |
| getEtfHistoricalNavFlows | GET /etfs/{identifier}/nav_flows/historical | Exchange Traded Fund (ETF) Historical NAV Flows |
| getEtfHistoricalStats | GET /etfs/{identifier}/historical_stats | Exchange Traded Fund (ETF) Historical Stats |
| getEtfHoldings | GET /etfs/{identifier}/holdings | ETF Holdings |
| getEtfNavFlows | GET /etfs/{identifier}/nav_flows | Exchange Traded Fund (ETF) NAV Flows |
| getEtfStats | GET /etfs/{identifier}/stats | Exchange Traded Fund (ETF) Stats |
| getEtfsNavFlows | GET /etfs/nav_flows | Exchange Traded Funds (ETFs) Latest NAV Flows |
| searchEtfs | GET /etfs/search | Search ETFs |
View Intrinio API Documentation
ApiResponseETFs getAllEtfs(exchange, pageSize, nextPage)
Returns a list of all currently listed ETFs, with relevant identification information including the ETF Name, Ticker, FIGI Ticker, and Exchange MIC for further usage with our ETF Metadata, Holdings, Stats, and Analytics offerings.
import com.intrinio.api.*;
import com.intrinio.models.*;
import com.intrinio.invoker.*;
import com.intrinio.invoker.auth.*;
import org.threeten.bp.*;
import java.math.BigDecimal;
import java.util.*;
public class Main {
public static void main(String[] args) throws Exception {
ApiClient defaultClient = Configuration.getDefaultApiClient();
ApiKeyAuth auth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
auth.setApiKey("YOUR_API_KEY");
defaultClient.setAllowRetries(true);
EtFsApi etFsApi = new EtFsApi();
String exchange = "XNAS";
Integer pageSize = 100;
String nextPage = null;
ApiResponseETFs result = etFsApi.getAllEtfs(exchange, pageSize, nextPage);
System.out.println(result);
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| exchange | String | [optional] | |
| pageSize | Integer | The number of results to return | [optional] [default to 100] |
| nextPage | String | Gets the next page of data from a previous API call | [optional] |
View Intrinio API Documentation
ETF getEtf(identifier)
Returns classifications and reference data which consists of ~90 columns that give detailed information about an ETF. These granular details include asset class, expense ratio, index name, index weighting scheme, smart beta type and specific investment objectives.
import com.intrinio.api.*;
import com.intrinio.models.*;
import com.intrinio.invoker.*;
import com.intrinio.invoker.auth.*;
import org.threeten.bp.*;
import java.math.BigDecimal;
import java.util.*;
public class Main {
public static void main(String[] args) throws Exception {
ApiClient defaultClient = Configuration.getDefaultApiClient();
ApiKeyAuth auth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
auth.setApiKey("YOUR_API_KEY");
defaultClient.setAllowRetries(true);
EtFsApi etFsApi = new EtFsApi();
String identifier = "SPY";
ETF result = etFsApi.getEtf(identifier);
System.out.println(result);
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| identifier | String | An ETF identifier (Ticker, Figi Ticker, ISIN, RIC, Intrinio ID) |
View Intrinio API Documentation
ETFAnalytics getEtfAnalytics(identifier)
Returns latest market analytics for a specified US ETF, including volume, trailing volume, market cap, 52 week high, and 52 week low.
import com.intrinio.api.*;
import com.intrinio.models.*;
import com.intrinio.invoker.*;
import com.intrinio.invoker.auth.*;
import org.threeten.bp.*;
import java.math.BigDecimal;
import java.util.*;
public class Main {
public static void main(String[] args) throws Exception {
ApiClient defaultClient = Configuration.getDefaultApiClient();
ApiKeyAuth auth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
auth.setApiKey("YOUR_API_KEY");
defaultClient.setAllowRetries(true);
EtFsApi etFsApi = new EtFsApi();
String identifier = "SPY";
ETFAnalytics result = etFsApi.getEtfAnalytics(identifier);
System.out.println(result);
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| identifier | String | An ETF identifier (Ticker, Figi Ticker, ISIN, RIC, Intrinio ID) |
View Intrinio API Documentation
ETFNavFlowsHistorical getEtfHistoricalNavFlows(identifier, startDate, endDate, pageSize, nextPage)
Returns a list of historical NAV (Net Asset Value) and flows data for Exchange Traded Funds. Includes NAV returns, NAV values, net flows data, share outstanding counts, and total net assets across multiple dates with pagination support.
import com.intrinio.api.*;
import com.intrinio.models.*;
import com.intrinio.invoker.*;
import com.intrinio.invoker.auth.*;
import org.threeten.bp.*;
import java.math.BigDecimal;
import java.util.*;
public class Main {
public static void main(String[] args) throws Exception {
ApiClient defaultClient = Configuration.getDefaultApiClient();
ApiKeyAuth auth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
auth.setApiKey("YOUR_API_KEY");
defaultClient.setAllowRetries(true);
EtFsApi etFsApi = new EtFsApi();
String identifier = "SPY";
LocalDate startDate = LocalDate.of();
LocalDate endDate = LocalDate.of();
Integer pageSize = 100;
String nextPage = "nextPage_example";
ETFNavFlowsHistorical result = etFsApi.getEtfHistoricalNavFlows(identifier, startDate, endDate, pageSize, nextPage);
System.out.println(result);
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| identifier | String | An ETF identifier (Ticker, Figi Ticker, ISIN, RIC, Intrinio ID) | |
| startDate | LocalDate | Return NAV flows on or after this date | [optional] |
| endDate | LocalDate | Return NAV flows on or before this date | [optional] |
| pageSize | Integer | The number of results to return | [optional] [default to 100] |
| nextPage | String | Gets the next page of data from a previous API call | [optional] |
View Intrinio API Documentation
ETFHistoricalStats getEtfHistoricalStats(identifier, startDate, endDate, pageSize)
Returns comprehensive key US ETF historical performance statistics, including prices, NAVs, flows, returns, and much more for both trailing and calendar year periods.
import com.intrinio.api.*;
import com.intrinio.models.*;
import com.intrinio.invoker.*;
import com.intrinio.invoker.auth.*;
import org.threeten.bp.*;
import java.math.BigDecimal;
import java.util.*;
public class Main {
public static void main(String[] args) throws Exception {
ApiClient defaultClient = Configuration.getDefaultApiClient();
ApiKeyAuth auth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
auth.setApiKey("YOUR_API_KEY");
defaultClient.setAllowRetries(true);
EtFsApi etFsApi = new EtFsApi();
String identifier = "SPY";
LocalDate startDate = LocalDate.of(2020,1,01);
LocalDate endDate = LocalDate.of(2020,12,31);
Integer pageSize = 100;
ETFHistoricalStats result = etFsApi.getEtfHistoricalStats(identifier, startDate, endDate, pageSize);
System.out.println(result);
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| identifier | String | An ETF identifier (Ticker, Figi Ticker, ISIN, RIC, Intrinio ID) | |
| startDate | LocalDate | The start date for the historical stats data in YYYY-MM-DD format. | [optional] |
| endDate | LocalDate | The end date for the historical stats data in YYYY-MM-DD format. | [optional] |
| pageSize | Integer | The maximum number of results to return per page. | [optional] [default to 100] |
View Intrinio API Documentation
ApiResponseETFHoldings getEtfHoldings(identifier, pageSize, nextPage)
Returns holdings data that details all the constituent securities in each ETF with names, identifiers, and the weights for each security providing granular level transparency.
import com.intrinio.api.*;
import com.intrinio.models.*;
import com.intrinio.invoker.*;
import com.intrinio.invoker.auth.*;
import org.threeten.bp.*;
import java.math.BigDecimal;
import java.util.*;
public class Main {
public static void main(String[] args) throws Exception {
ApiClient defaultClient = Configuration.getDefaultApiClient();
ApiKeyAuth auth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
auth.setApiKey("YOUR_API_KEY");
defaultClient.setAllowRetries(true);
EtFsApi etFsApi = new EtFsApi();
String identifier = "SPY";
Integer pageSize = 100;
String nextPage = null;
ApiResponseETFHoldings result = etFsApi.getEtfHoldings(identifier, pageSize, nextPage);
System.out.println(result);
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| identifier | String | An ETF identifier (Ticker, Figi Ticker, ISIN, RIC, Intrinio ID) | |
| pageSize | Integer | The number of results to return | [optional] [default to 100] |
| nextPage | String | Gets the next page of data from a previous API call | [optional] |
View Intrinio API Documentation
ETFNavFlows getEtfNavFlows(identifier, startDate, endDate, pageSize, nextPage)
Returns NAV (Net Asset Value) and flows data for Exchange Traded Funds. Includes NAV returns (daily, monthly, quarterly, yearly, annualized), NAV values (unadjusted and adjusted for splits/dividends), net flows data, share outstanding counts, and total net assets.
import com.intrinio.api.*;
import com.intrinio.models.*;
import com.intrinio.invoker.*;
import com.intrinio.invoker.auth.*;
import org.threeten.bp.*;
import java.math.BigDecimal;
import java.util.*;
public class Main {
public static void main(String[] args) throws Exception {
ApiClient defaultClient = Configuration.getDefaultApiClient();
ApiKeyAuth auth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
auth.setApiKey("YOUR_API_KEY");
defaultClient.setAllowRetries(true);
EtFsApi etFsApi = new EtFsApi();
String identifier = "SPY";
LocalDate startDate = LocalDate.of();
LocalDate endDate = LocalDate.of();
Integer pageSize = 100;
String nextPage = "nextPage_example";
ETFNavFlows result = etFsApi.getEtfNavFlows(identifier, startDate, endDate, pageSize, nextPage);
System.out.println(result);
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| identifier | String | An ETF identifier (Ticker, Figi Ticker, ISIN, RIC, Intrinio ID) | |
| startDate | LocalDate | Return NAV flows on or after this date | [optional] |
| endDate | LocalDate | Return NAV flows on or before this date | [optional] |
| pageSize | Integer | The number of results to return | [optional] [default to 100] |
| nextPage | String | Gets the next page of data from a previous API call | [optional] |
View Intrinio API Documentation
ETFStats getEtfStats(identifier)
Returns comprehensive key US ETF performance statistics, including prices, NAVs, flows, returns, and much more for both trailing and calendar year periods.
import com.intrinio.api.*;
import com.intrinio.models.*;
import com.intrinio.invoker.*;
import com.intrinio.invoker.auth.*;
import org.threeten.bp.*;
import java.math.BigDecimal;
import java.util.*;
public class Main {
public static void main(String[] args) throws Exception {
ApiClient defaultClient = Configuration.getDefaultApiClient();
ApiKeyAuth auth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
auth.setApiKey("YOUR_API_KEY");
defaultClient.setAllowRetries(true);
EtFsApi etFsApi = new EtFsApi();
String identifier = "SPY";
ETFStats result = etFsApi.getEtfStats(identifier);
System.out.println(result);
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| identifier | String | An ETF identifier (Ticker, Figi Ticker, ISIN, RIC, Intrinio ID) |
View Intrinio API Documentation
ETFNavFlowsAll getEtfsNavFlows(countryCode, pageSize, nextPage)
Returns the latest NAV (Net Asset Value) and flows data for all Exchange Traded Funds in the specified country, sorted by month-end assets in descending order. Each ETF appears only once with its most recent NAV flows data.
import com.intrinio.api.*;
import com.intrinio.models.*;
import com.intrinio.invoker.*;
import com.intrinio.invoker.auth.*;
import org.threeten.bp.*;
import java.math.BigDecimal;
import java.util.*;
public class Main {
public static void main(String[] args) throws Exception {
ApiClient defaultClient = Configuration.getDefaultApiClient();
ApiKeyAuth auth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
auth.setApiKey("YOUR_API_KEY");
defaultClient.setAllowRetries(true);
EtFsApi etFsApi = new EtFsApi();
String countryCode = "US";
Integer pageSize = 100;
String nextPage = "nextPage_example";
ETFNavFlowsAll result = etFsApi.getEtfsNavFlows(countryCode, pageSize, nextPage);
System.out.println(result);
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| countryCode | String | The ISO country code to filter ETFs by (e.g., US, CA, GB). Defaults to US. | [optional] [default to US] |
| pageSize | Integer | The number of results to return | [optional] [default to 100] |
| nextPage | String | Gets the next page of data from a previous API call | [optional] |
View Intrinio API Documentation
ApiResponseETFs searchEtfs(query, mode)
Accepts a string of keyword combinations, and searches across the ETF name and ticker and returns a list of ETFs with related keywords.
import com.intrinio.api.*;
import com.intrinio.models.*;
import com.intrinio.invoker.*;
import com.intrinio.invoker.auth.*;
import org.threeten.bp.*;
import java.math.BigDecimal;
import java.util.*;
public class Main {
public static void main(String[] args) throws Exception {
ApiClient defaultClient = Configuration.getDefaultApiClient();
ApiKeyAuth auth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
auth.setApiKey("YOUR_API_KEY");
defaultClient.setAllowRetries(true);
EtFsApi etFsApi = new EtFsApi();
String query = "iShares";
String mode = null;
ApiResponseETFs result = etFsApi.searchEtfs(query, mode);
System.out.println(result);
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| query | String | ||
| mode | String | When set, changes search mode to the specified mode. Paging is not available in rank_order. | [optional] [enum: rank_order, starts_with] |