Skip to main content
GET
/
strategies
/
{strategyId}
/
historical-data
Retrieve generated historical data for a specific date
curl --request GET \
  --url https://api.noonum.ai/v1/strategies/{strategyId}/historical-data \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "b544d95b-43a6-4a50-a326-90552b05c551",
    "symbol": "TSLA",
    "name": "Tesla, Inc.",
    "isin": "US88160R1014",
    "exchange": "NASDAQ",
    "market": "us",
    "sector": "Consumer Cyclical",
    "industry": "Auto - Manufacturers",
    "marketCap": 902298200000,
    "volAvg": 1250000,
    "linguisticBeta": 0.12002,
    "marketBuzz": 0.406,
    "active": true,
    "figi": "BBG000N9MNX3",
    "mic": "XNAS",
    "reasoning": "<string>",
    "convictionScore": 0.75
  }
]

Authorizations

Authorization
string
header
required

Enter 'Bearer' followed by a space and then your JWT or API Key. Example: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9... or Bearer YOUR_API_KEY_HERE

Path Parameters

strategyId
string
required

UUID of the user strategy

Query Parameters

date
string<date>
required

The specific date to retrieve data for.

Example:

"2024-01-31"

includeReasoning
boolean
default:false

When true, include the reasoning text for each company.

scoringMinMarketCap
number
default:500000000

Minimum market cap (USD) for conviction score calculation. Companies below this threshold receive a convictionScore of 0.

Response

Historical data.

id
string<uuid>
required
Example:

"b544d95b-43a6-4a50-a326-90552b05c551"

symbol
string
required
Example:

"TSLA"

name
string
required
Example:

"Tesla, Inc."

isin
string | null
required
Example:

"US88160R1014"

exchange
string
required
Example:

"NASDAQ"

market
string | null
required
Example:

"us"

sector
string | null
required
Example:

"Consumer Cyclical"

industry
string | null
required
Example:

"Auto - Manufacturers"

marketCap
number | null
required
Example:

902298200000

volAvg
number<float> | null
required
Example:

1250000

linguisticBeta
number<float>
required
Example:

0.12002

marketBuzz
number<float>
required
Example:

0.406

active
boolean
required

Whether this company is currently active

Example:

true

figi
string | null

Bloomberg Financial Instrument Global Identifier (FIGI) for the listing.

Example:

"BBG000N9MNX3"

mic
string | null

ISO 10383 Operating MIC for the listing exchange/market.

Example:

"XNAS"

reasoning
string | null

Reasoning text for company inclusion; present when includeReasoning=true.

convictionScore
number<float> | null

Robust conviction score in (0, 1). Combines size-neutralized buzz and linguistic beta via robust z-score normalization and weighted geometric mean. Higher = stronger thematic signal on both dimensions.

Example:

0.75