Skip to main content
GET
/
strategies
/
{strategyId}
/
companies
List the result companies for a strategy run
curl --request GET \
  --url https://api.noonum.ai/v2/strategies/{strategyId}/companies \
  --header 'Authorization: Bearer <token>'
[
  {
    "active": true,
    "exchange": "NASDAQ",
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "industry": "<string>",
    "isin": "<string>",
    "linguisticBeta": 123,
    "market": "<string>",
    "marketBuzz": 123,
    "marketCap": 123,
    "name": "Tesla, Inc.",
    "sector": "<string>",
    "symbol": "TSLA",
    "volAvg": 123,
    "convictionScore": 123,
    "figi": "<string>",
    "mic": "<string>",
    "reasoning": "<string>"
  }
]

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<uuid>
required

UUID of the strategy

Query Parameters

asOfDate
string<date>

The as-of date (YYYY-MM-DD) selecting a specific run of the version. Omitted -> the latest completed run for the version.

versionId
string<uuid>

Explicit version to read. Omitted -> the strategy's active version.

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

Array of companies (empty when the run has no companies)

active
boolean
required

Whether this company is currently active.

exchange
string
required
Example:

"NASDAQ"

id
string<uuid>
required
industry
string | null
required
isin
string | null
required
linguisticBeta
number<float>
required
market
string | null
required
marketBuzz
number<float>
required
marketCap
number | null
required
name
string
required
Example:

"Tesla, Inc."

sector
string | null
required
symbol
string
required
Example:

"TSLA"

volAvg
number<float> | null
required
convictionScore
number<float> | null

Robust conviction score in (0, 1).

figi
string | null

Bloomberg Financial Instrument Global Identifier (FIGI).

mic
string | null

ISO 10383 Operating MIC for the listing exchange/market.

reasoning
string | null

Present when includeReasoning=true.