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

# Get Recent News for a Portfolio

> Retrieves news for all businesses within the portfolio.

<Note>
  Use the [**<u>Login</u>**<u> endpoint</u>](/api-reference/user/logs-a-user-in) to retrieve the **`SessionKey`**, then include it in the **Authorization** field for authentication.
</Note>


## OpenAPI

````yaml get /v1/Portfolio/News
openapi: 3.0.0
info:
  version: v2
  title: Credit Risk Monitor API
servers:
  - url: https://api.creditriskmonitor.com
security: []
paths:
  /v1/Portfolio/News:
    get:
      tags:
        - Portfolio
      summary: Gets the News for Businesses in the Portfolio
      operationId: Portfolio_GetNewsForPortfolio
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseContainer_APINewsCollection_'
            text/json:
              schema:
                $ref: '#/components/schemas/APIResponseContainer_APINewsCollection_'
            text/html:
              schema:
                $ref: '#/components/schemas/APIResponseContainer_APINewsCollection_'
            application/xml:
              schema:
                $ref: '#/components/schemas/APIResponseContainer_APINewsCollection_'
            text/xml:
              schema:
                $ref: '#/components/schemas/APIResponseContainer_APINewsCollection_'
      security:
        - Bearer: []
components:
  schemas:
    APIResponseContainer_APINewsCollection_:
      description: ''
      type: object
      properties:
        Success:
          description: ''
          type: boolean
        Data:
          description: ''
          type: array
          items:
            $ref: '#/components/schemas/APINews'
        ErrorCode:
          description: ''
          type: string
    APINews:
      description: ''
      type: object
      properties:
        id:
          format: int32
          description: Id of the News Story
          type: integer
        title:
          description: Title of the News Story
          type: string
        link:
          description: URL to the News Story
          type: string
        description:
          description: Body of the News Story
          type: string
        pubDate:
          description: Published Date of the News Story
          type: string
  securitySchemes:
    Bearer:
      type: http
      scheme: bearer
      description: >-
        Enter the Session Key with the `Bearer ` prefix, e.g. "Bearer
        abcde12345".

````