> ## Documentation Index
> Fetch the complete documentation index at: https://docs.noonum.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get reasoning and evidence for all companies in a strategy



## OpenAPI

````yaml /api-reference/openapi.json get /strategies/{strategyId}/evidences
openapi: 3.0.0
info:
  title: Noonum API
  version: 1.0.0
  contact:
    name: Noonum Support
    email: hello@noonum.com
  description: >
    Create, read, update, and delete your own investment strategies, browse
    public premade strategies, run semantic search, and call supporting utility
    endpoints.
servers:
  - url: https://api.noonum.ai/v1
security:
  - bearerAuth: []
tags:
  - name: UserStrategies
    description: Create, read, update, and delete your own investment strategies.
  - name: PremadeStrategies
    description: Read public premade strategies and find the ones closest to an objective.
  - name: Helper
    description: >-
      Supporting endpoints for company lookup, objective editing, and health
      checks.
  - name: Benchmarks
    description: Read benchmark data.
  - name: Portfolios
    description: Create, read, update, and delete your portfolios.
  - name: Backtest
    description: Backtest a portfolio without saving it.
paths:
  /strategies/{strategyId}/evidences:
    parameters:
      - name: strategyId
        in: path
        required: true
        schema:
          type: string
        description: UUID of the user strategy
    get:
      tags:
        - UserStrategies
      summary: Get reasoning and evidence for all companies in a strategy
      operationId: app.api.v1.strategies.evidences_get
      responses:
        '200':
          description: Companies in the strategy, each with reasoning and evidence.
          content:
            application/json:
              schema:
                type: object
                properties:
                  evidences:
                    type: array
                    items:
                      type: object
                      description: >-
                        A company's reasoning and supporting evidence, keyed by
                        company ID.
                      properties:
                        companyId:
                          type: string
                          format: uuid
                          description: Identifier of the company.
                          example: fbf71130-600a-4655-ae5b-6f367d0bbfb2
                        reasoning:
                          type: string
                          description: Why the company was included or excluded.
                          example: >
                            The strategy involves investing in companies that
                            focus on EV manufacturing, battery technology,

                            and charging station infrastructure. The excerpts
                            highlight Tesla's involvement in the EV market,

                            particularly its focus on electric vehicles and
                            charging infrastructure,

                            which aligns with the strategy.
                        summaries:
                          type: array
                          description: The evidence backing the reasoning.
                          items:
                            type: object
                            description: >-
                              A piece of evidence supporting a company's
                              inclusion.
                            required:
                              - provider
                              - pubDate
                              - text
                            properties:
                              provider:
                                type: string
                                description: Source of the evidence.
                                example: Reuters
                              pubDate:
                                type: integer
                                format: int64
                                description: Publication date as a Unix timestamp.
                                example: 1741774920
                              text:
                                type: string
                                description: The evidence text.
                                example: >
                                  Tesla is a major player in the Electric
                                  Battery Charging Stations market,

                                  known for its ultra-fast chargers, including
                                  Tesla Superchargers.

                                  The company is investing in expanding its
                                  charging network.
        '202':
          description: The strategy is still generating and results are not ready yet.
        '404':
          description: The strategy or its results do not exist.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT or API Key
      description: |
        Enter 'Bearer' followed by a space and then your JWT or API Key.
        Example: `Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...`
        or `Bearer YOUR_API_KEY_HERE`

````