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

# Get Report Run

> Get run status + download_url + facts_url for a specific run.

V2 Wave 5C (API-IMPLEMENTATION-SPEC.md §11): `facts_url` is sourced from
the parent report's `filters._report_meta` (populated by `_run_report_bg`
at run-completion time — see app/services/report_facts.py) regardless of
which branch below resolves the run, since the `reports` row is this
codebase's single source of truth for a run's actual generation outcome
(the export-job fallback's own `status`/`error` reflect job creation, not
report-generation completion, in the in-memory store).



## OpenAPI

````yaml /openapi.json get /v1/reports/{report_id}/runs/{run_id}
openapi: 3.1.0
info:
  description: Causeloop Platform Backend
  title: Causeloop API
  version: 1.0.0
servers: []
security: []
paths:
  /v1/reports/{report_id}/runs/{run_id}:
    get:
      tags:
        - reports
      summary: Get Report Run
      description: >-
        Get run status + download_url + facts_url for a specific run.


        V2 Wave 5C (API-IMPLEMENTATION-SPEC.md §11): `facts_url` is sourced from

        the parent report's `filters._report_meta` (populated by
        `_run_report_bg`

        at run-completion time — see app/services/report_facts.py) regardless of

        which branch below resolves the run, since the `reports` row is this

        codebase's single source of truth for a run's actual generation outcome

        (the export-job fallback's own `status`/`error` reflect job creation,
        not

        report-generation completion, in the in-memory store).
      operationId: get_report_run_v1_reports__report_id__runs__run_id__get
      parameters:
        - in: path
          name: report_id
          required: true
          schema:
            title: Report Id
            type: string
        - in: path
          name: run_id
          required: true
          schema:
            title: Run Id
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                additionalProperties: true
                title: >-
                  Response Get Report Run V1 Reports  Report Id  Runs  Run Id 
                  Get
                type: object
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
        - HTTPBearer: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ValidationError:
      properties:
        ctx:
          title: Context
          type: object
        input:
          title: Input
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
  securitySchemes:
    HTTPBearer:
      scheme: bearer
      type: http

````