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

# Get process output

> Returns the structured output collected during process execution. Output is only available once the process is idle.



## OpenAPI

````yaml /cyrnel/openapi.json get /processes/{id}/output
openapi: 3.0.0
info:
  title: Cyrnel API
  description: >-
    Cyrnel is a universal layer that connects AI agents and LLM applications to
    any external service, API, or device regardless of protocol or standard. It
    acts as an adaptive bridge between your AI and the outside world, enabling
    seamless integrations through code execution, async operation handling, and
    built-in observability and security controls.
  version: 1.0.0
servers:
  - url: http://localhost:9371
security: []
paths:
  /processes/{id}/output:
    get:
      tags:
        - Processes
      summary: Get process output
      description: >-
        Returns the structured output collected during process execution. Output
        is only available once the process is idle.
      parameters:
        - schema:
            type: string
            description: Numeric process identifier serialized as a path parameter.
          required: true
          description: Numeric process identifier serialized as a path parameter.
          name: id
          in: path
      responses:
        '200':
          description: Structured process output.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProcessOutput'
        '400':
          description: The id path parameter was invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '401':
          description: A bearer token was required but missing or invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '404':
          description: No process exists for the requested identifier.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '409':
          description: The process has not finished yet, so output is not available.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '500':
          description: The output could not be loaded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
components:
  schemas:
    ProcessOutput:
      type: object
      additionalProperties:
        nullable: true
      description: Structured output emitted by the process during execution.
    ApiErrorResponse:
      type: object
      properties:
        error:
          type: string
          description: Human-readable error message returned by the API.
      required:
        - error
      description: Standard error envelope returned by the HTTP error middleware.

````