All URIs are relative to https://api-v2.intrinio.com
Method | HTTP request | Description |
---|---|---|
get_all_etfs | GET /etfs | All ETFs |
get_etf | GET /etfs/{identifier} | Lookup ETF |
get_etf_analytics | GET /etfs/{identifier}/analytics | ETF Analytics |
get_etf_holdings | GET /etfs/{identifier}/holdings | ETF Holdings |
get_etf_stats | GET /etfs/{identifier}/stats | Exchange Traded Fund (ETF) stats |
search_etfs | GET /etfs/search | Search ETFs |
View Intrinio API Documentation
ApiResponseETFs get_all_etfs(opts)
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.
# Setup client
client <- IntrinioSDK::ApiClient$new()
# Configure API key authorization: ApiKeyAuth
client$configuration$apiKey <- "YOUR_API_KEY"
#Configure retries
client$configuration$allowRetries <- TRUE
# Setup API with client
ETFsApi <- IntrinioSDK::ETFsApi$new(client)
# Optional params
opts <- list(
exchange = "XNAS",
page_size = 100,
next_page = NULL
)
response <- ETFsApi$get_all_etfs(opts)
print(response)
print(response$content)
Name | Type | Description | Notes |
---|---|---|---|
exchange | Character | [optional] | |
page_size | Integer | The number of results to return | [optional] [default to 100] |
next_page | Character | Gets the next page of data from a previous API call | [optional] |
View Intrinio API Documentation
ETF get_etf(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.
# Setup client
client <- IntrinioSDK::ApiClient$new()
# Configure API key authorization: ApiKeyAuth
client$configuration$apiKey <- "YOUR_API_KEY"
#Configure retries
client$configuration$allowRetries <- TRUE
# Setup API with client
ETFsApi <- IntrinioSDK::ETFsApi$new(client)
# Required params
identifier <- "SPY"
response <- ETFsApi$get_etf(identifier)
print(response)
print(response$content)
Name | Type | Description | Notes |
---|---|---|---|
identifier | Character | An ETF identifier (Ticker, Figi Ticker, ISIN, RIC, Intrinio ID) |
View Intrinio API Documentation
ETFAnalytics get_etf_analytics(identifier)
Returns latest market analytics for a specified US ETF, including volume, trailing volume, market cap, 52 week high, and 52 week low.
# Setup client
client <- IntrinioSDK::ApiClient$new()
# Configure API key authorization: ApiKeyAuth
client$configuration$apiKey <- "YOUR_API_KEY"
#Configure retries
client$configuration$allowRetries <- TRUE
# Setup API with client
ETFsApi <- IntrinioSDK::ETFsApi$new(client)
# Required params
identifier <- "SPY"
response <- ETFsApi$get_etf_analytics(identifier)
print(response)
print(response$content)
Name | Type | Description | Notes |
---|---|---|---|
identifier | Character | An ETF identifier (Ticker, Figi Ticker, ISIN, RIC, Intrinio ID) |
View Intrinio API Documentation
ApiResponseETFHoldings get_etf_holdings(identifier, opts)
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.
# Setup client
client <- IntrinioSDK::ApiClient$new()
# Configure API key authorization: ApiKeyAuth
client$configuration$apiKey <- "YOUR_API_KEY"
#Configure retries
client$configuration$allowRetries <- TRUE
# Setup API with client
ETFsApi <- IntrinioSDK::ETFsApi$new(client)
# Required params
identifier <- "SPY"
# Optional params
opts <- list(
page_size = 100,
next_page = NULL
)
response <- ETFsApi$get_etf_holdings(identifier, opts)
print(response)
print(response$content)
Name | Type | Description | Notes |
---|---|---|---|
identifier | Character | An ETF identifier (Ticker, Figi Ticker, ISIN, RIC, Intrinio ID) | |
page_size | Integer | The number of results to return | [optional] [default to 100] |
next_page | Character | Gets the next page of data from a previous API call | [optional] |
View Intrinio API Documentation
ETFStats get_etf_stats(identifier)
Returns comprehensive key US ETF performance statistics, including prices, NAVs, flows, returns, and much more for both trailing and calendar year periods.
# Setup client
client <- IntrinioSDK::ApiClient$new()
# Configure API key authorization: ApiKeyAuth
client$configuration$apiKey <- "YOUR_API_KEY"
#Configure retries
client$configuration$allowRetries <- TRUE
# Setup API with client
ETFsApi <- IntrinioSDK::ETFsApi$new(client)
# Required params
identifier <- "SPY"
response <- ETFsApi$get_etf_stats(identifier)
print(response)
print(response$content)
Name | Type | Description | Notes |
---|---|---|---|
identifier | Character | An ETF identifier (Ticker, Figi Ticker, ISIN, RIC, Intrinio ID) |
View Intrinio API Documentation
ApiResponseETFs search_etfs(query, opts)
Accepts a string of keyword combinations, and searches across the ETF name and ticker and returns a list of ETFs with related keywords.
# Setup client
client <- IntrinioSDK::ApiClient$new()
# Configure API key authorization: ApiKeyAuth
client$configuration$apiKey <- "YOUR_API_KEY"
#Configure retries
client$configuration$allowRetries <- TRUE
# Setup API with client
ETFsApi <- IntrinioSDK::ETFsApi$new(client)
# Required params
query <- "iShares"
# Optional params
opts <- list(
mode = NULL
)
response <- ETFsApi$search_etfs(query, opts)
print(response)
print(response$content)
Name | Type | Description | Notes |
---|---|---|---|
query | Character | ||
mode | Character | When set, changes search mode to the specified mode. Paging is not available in rank_order. | [optional] |