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

# Return the run-scoped trace verification verdict

> Returns a typed honest refusal while no remote trace-journal authority exists. It never scans a trace directory or exposes a filesystem path.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/jobs/{id}/trace/verify
openapi: 3.1.0
info:
  description: >-
    Authenticated loopback remote execution and declarative schedules.
    Artifacts, schedule list/delete/trigger/backfill, /v1/arm, and POST /v1/run
    are absent.
  title: nika serve
  version: 0.116.2
servers:
  - url: http://127.0.0.1
security:
  - bearerAuth: []
paths:
  /v1/jobs/{id}/trace/verify:
    get:
      summary: Return the run-scoped trace verification verdict
      description: >-
        Returns a typed honest refusal while no remote trace-journal authority
        exists. It never scans a trace directory or exposes a filesystem path.
      parameters:
        - in: path
          name: id
          required: true
          schema:
            format: uuid
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TraceVerification'
          description: Typed trace verdict
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Error envelope
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Error envelope
components:
  schemas:
    TraceVerification:
      additionalProperties: false
      description: >-
        Run-scoped typed verdict. Unavailable is an honest refusal: this server
        has no remote trace-journal authority and never scans or returns
        filesystem paths.
      properties:
        reason:
          enum:
            - run_not_terminal
            - trace_journal_unavailable
          type: string
        trace_id:
          minLength: 1
          type: string
        verdict:
          enum:
            - unavailable
          type: string
      required:
        - verdict
        - reason
      type: object
    Error:
      additionalProperties: false
      properties:
        error:
          additionalProperties: false
          properties:
            code:
              type: string
            message:
              type: string
          required:
            - code
            - message
          type: object
      required:
        - error
      type: object
  securitySchemes:
    bearerAuth:
      description: 'Exactly one Authorization: Bearer value from the token file'
      scheme: bearer
      type: http

````