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

# List Recommendation Verifications

> Remediation view (WP-C): every recommendation in this workspace with a
verification lifecycle (open monitoring, holding, reopened/failed,
verified/closed), projected as a flat list + summary counts. Registered
BEFORE GET /recommendations/{rec_id} so the literal 'verifications'
segment is matched first, not captured as a rec_id path param.



## OpenAPI

````yaml /openapi.json get /v1/recommendations/verifications
openapi: 3.1.0
info:
  description: Causeloop Platform Backend
  title: Causeloop API
  version: 1.0.0
servers: []
security: []
paths:
  /v1/recommendations/verifications:
    get:
      tags:
        - recommendations
      summary: List Recommendation Verifications
      description: |-
        Remediation view (WP-C): every recommendation in this workspace with a
        verification lifecycle (open monitoring, holding, reopened/failed,
        verified/closed), projected as a flat list + summary counts. Registered
        BEFORE GET /recommendations/{rec_id} so the literal 'verifications'
        segment is matched first, not captured as a rec_id path param.
      operationId: list_recommendation_verifications_v1_recommendations_verifications_get
      responses:
        '200':
          content:
            application/json:
              schema: {}
          description: Successful Response
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      scheme: bearer
      type: http

````