Skip to main content
The Asset Details screen composes fundamentals, price history charts, user-specific investment metrics, and recent activity for a selected instrument.
You render this screen by fetching four endpoints: product fundamentals, price history for charts, the user’s investment details, and the recent activity feed.

Prerequisites

  • Backend access to the endpoints
  • Bearer token with read:users scope
  • x-user-id header to apply the correct user context

What to fetch

Use GET /investment-products/{isin}/fundamentals to retrieve pricing, trading tags, and the fundamentals set.For ETFs: Holdings, expense ratio, index stats, geography/sector distributions, about section (provider, replication method, tracked index), and news.For Stocks: Company information (CEO, headquarters, employees, website), financial metrics (PE ratio, EPS, market cap, dividend yield, beta), analyst ratings (buy/sell/hold percentages, price targets), and news.
Use GET /investment-products/{isin}/price-history to retrieve historical price data organized by tenor (1w, 1m, 3m, 6m, 1y, max). Each tenor includes timestamped price points, returns percentage, and a flag indicating intraday vs daily granularity.
Use GET /investment-products/{isin}/investment-details to retrieve the user’s current value, allocation, share count, performance, average price per share, and total dividends. The user must hold the asset.
Use GET /investment-products/{isin}/recent-activity?limit=25 to fetch the latest orders and dividends related to the asset, sorted by display date descending.

Fundamentals fields by asset type

The fundamentals response varies depending on whether the instrument is a stock or an ETF, and within ETFs, by asset class. The tables below show which fields and sections are present for each type.

Key facts

Metrics

Fields return "-" as a string value when the underlying data is unavailable from the data provider.

About

Top holdings & analyst views

Note that analystViews may be undefined when no analyst coverage exists for a stock.
Note that topHoldings is also suppressed for some ETFs with Synthetic replication.

Example: minimal client fetch

Load fundamentals, price history, user investment details, and recent activity in parallel for faster screen-time-to-first-paint. Ensure you gracefully handle 404 for unknown ISINs and 400 for non-holders when requesting investment details.

See also