Skip to main content
GET
/
strategies
/
{strategyId}
/
evidences
Get all included companies' evidences for the resolved run
curl --request GET \
  --url https://api.noonum.ai/v2/strategies/{strategyId}/evidences \
  --header 'Authorization: Bearer <token>'
{
  "evidences": [
    {
      "companyId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "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

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

Per-company evidences for the resolved run (empty list when the run has no evidences). 404 when there is no completed run.

evidences
object[]
required