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

# Get full run results

> **Enterprise feature.**

Fetch the full (non-truncated) results for a run from storage.
Returns null data if run result storage is not enabled.




## OpenAPI

````yaml /openapi.yaml get /runs/{runId}/results
openapi: 3.0.0
info:
  title: superglue AI API
  version: 1.0.0
  description: API for running superglue AI tools
  contact:
    name: superglue AI Support
    email: stefan@superglue.ai
servers:
  - url: https://api.superglue.ai/v1
    description: Production
security:
  - ApiKeyAuth: []
paths:
  /runs/{runId}/results:
    get:
      tags:
        - Runs
      summary: Get full run results
      description: |
        **Enterprise feature.**

        Fetch the full (non-truncated) results for a run from storage.
        Returns null data if run result storage is not enabled.
      operationId: getRunResults
      parameters:
        - name: runId
          in: path
          required: true
          schema:
            type: string
          example: 7f3e9c1a-2b4d-4e8f-9a3b-1c5d7e9f2a4b
        - name: truncate
          in: query
          required: false
          schema:
            type: string
            enum:
              - 'true'
              - 'false'
            default: 'false'
          description: If "true", truncate large results for preview
      responses:
        '200':
          description: Run results
          headers:
            X-Trace-Id:
              schema:
                type: string
              description: Request trace ID for debugging and log correlation
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  data:
                    $ref: '#/components/schemas/RunResults'
                  message:
                    type: string
                    description: Present when no stored results are available
        '404':
          description: Run not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '503':
          description: Run result storage not configured
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    RunResults:
      type: object
      description: Full (non-truncated) run results fetched from storage
      required:
        - runId
        - success
      properties:
        runId:
          type: string
          example: 7f3e9c1a-2b4d-4e8f-9a3b-1c5d7e9f2a4b
        success:
          type: boolean
        data:
          type: object
          description: Full tool execution result data
          additionalProperties: true
        stepResults:
          type: array
          description: Per-step execution results
          items:
            $ref: '#/components/schemas/StepResult'
        toolPayload:
          type: object
          description: The inputs provided when running the tool
          additionalProperties: true
        error:
          type: string
        storedAt:
          type: string
          format: date-time
    Error:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          required:
            - message
          properties:
            message:
              type: string
              example: Invalid input parameters
    StepResult:
      type: object
      description: Execution result for a single tool step
      required:
        - stepId
        - success
      properties:
        stepId:
          type: string
          description: ID of the step that was executed
        success:
          type: boolean
          description: Whether the step completed successfully
        data:
          type: object
          description: Step result data
          additionalProperties: true
        error:
          type: string
          description: Error message if the step failed
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: bearer
      bearerFormat: Static API Key
      description: >
        Static API key authentication using Bearer token scheme.

        Include your API key in the Authorization header: `Authorization: Bearer
        YOUR_API_KEY`


        Alternatively, you can use the `token` query parameter to authenticate.


        API keys can be generated in your superglue dashboard.

````