Skip to main content
GET
/
strategies
/
{strategyId}
/
companies
/
{companyId}
Get reasoning/evidence for a specific company in a strategy
curl --request GET \
  --url https://api.noonum.ai/v2/strategies/{strategyId}/companies/{companyId} \
  --header 'Authorization: Bearer <token>'
{
  "isIncluded": true,
  "reasoning": "<string>",
  "summaries": [
    {
      "provider": "Reuters",
      "pubDate": 123,
      "text": "<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

companyId
string<uuid>
required

Company (issuer) ID in the Noonum database

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.

Response

Reasoning and evidence for company inclusion/exclusion. A company not in the run still returns 200 with a 'no evidence' reasoning (matching v1), not 404.

isIncluded
boolean
required
reasoning
string | null
required
summaries
object[]
required