v1

latestOpenAPI 3.1.0Proprietary2026-07-244223105.2 KB
Stocks

Get a single stock

Retrieve the details of a single stock

get/v3/aggregation/stocks/{id}

Path parameters

idnumber required
Example:4556879789

Response

Stock

idnumber

Stock's unique identifier

account_idnumber

Stock's linked account

labelstring

Stock's label

tickerstring

Stock 4 characters identifier

marketplacestring

Marketplace where the stock is traded

isinstring

Stock's ISIN [ISO 6166] (see https://en.wikipedia.org/wiki/ISO_6166)

stock_keystring

Stock identification key

current_pricenumber

Current unitary price for one stock

currency_codestring

3 letters ISO 4217 currency code

quantitynumber

Quantity of stocks owned

total_valuenumber

Total value of this stock's portfolio = current_price * quantity

average_purchase_pricenumber

Average stock purchase price

value_datestring date

The date at which the current_price value was recorded

deletedboolean

Flag to indicate that the stock was deleted

created_atstring date-time

Timestamp recording when the stock was created

updated_atstring date-time

Timestamp recording when the stock was last refreshed

Example response

{
  "id": 1510467,
  "account_id": 16717622,
  "label": "Facebook",
  "ticker": "AAPL",
  "marketplace": "null",
  "isin": "US30303M1027",
  "stock_key": "US30303M1027-FACEBOOK--USD",
  "current_price": 124.96,
  "currency_code": "USD",
  "quantity": 8,
  "total_value": 999.68,
  "average_purchase_price": 94.12,
  "value_date": "2015-08-23",
  "created_at": "2024-10-16T07:59:11.785Z",
  "updated_at": "2024-10-16T07:59:11.785Z"
}