> ## 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.

# Criticality Exposure

> Return financial exposure aggregated by theme.

W18: exposure_cents sourced from S10 impact ledger cost_of_inaction_cents per loop.
prevented_cents = sum of net_benefit_cents for loops whose pattern has an 'implemented' rec.
Falls back to structured_attrs.financial_loss_cents when no impact ledger exists for a loop.
Pages across ALL issues via cursor loop (up to _MAX_AGG_PAGES * 100 issues).



## OpenAPI

````yaml /openapi.json get /v1/criticality/exposure
openapi: 3.1.0
info:
  description: Causeloop Platform Backend
  title: Causeloop API
  version: 1.0.0
servers: []
security: []
paths:
  /v1/criticality/exposure:
    get:
      tags:
        - criticality
      summary: Criticality Exposure
      description: >-
        Return financial exposure aggregated by theme.


        W18: exposure_cents sourced from S10 impact ledger
        cost_of_inaction_cents per loop.

        prevented_cents = sum of net_benefit_cents for loops whose pattern has
        an 'implemented' rec.

        Falls back to structured_attrs.financial_loss_cents when no impact
        ledger exists for a loop.

        Pages across ALL issues via cursor loop (up to _MAX_AGG_PAGES * 100
        issues).
      operationId: criticality_exposure_v1_criticality_exposure_get
      responses:
        '200':
          content:
            application/json:
              schema: {}
          description: Successful Response
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      scheme: bearer
      type: http

````