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

# Preview Run Artifact

> Preview Run Artifact



## OpenAPI

````yaml /api-reference/openapi.json get /v1/jobs/runs/{run_id}/artifacts/{artifact_id}/preview
openapi: 3.1.0
info:
  title: Nimble SDK
  version: 1.0.0
  description: The AI-Native SDK for Real-Time Web Data at scale
servers:
  - url: https://sdk.nimbleway.com
security: []
paths:
  /v1/jobs/runs/{run_id}/artifacts/{artifact_id}/preview:
    get:
      tags:
        - Jobs
      summary: Preview Run Artifact
      description: Preview Run Artifact
      operationId: >-
        preview_run_artifact_v1_jobs_runs__run_id__artifacts__artifact_id__preview_get
      parameters:
        - name: run_id
          in: path
          required: true
          schema:
            type: string
            title: Run Id
        - name: artifact_id
          in: path
          required: true
          schema:
            type: string
            title: Artifact Id
        - name: token
          in: cookie
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Token
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ArtifactPreview'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - BearerAuth: []
components:
  schemas:
    ArtifactPreview:
      properties:
        columns:
          items:
            type: string
          type: array
          title: Columns
          description: Column names in the preview.
        row_count:
          type: integer
          title: Row Count
          description: Total number of rows in the artifact.
        rows:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Rows
          description: Sample rows from the artifact.
      type: object
      required:
        - columns
        - row_count
        - rows
      title: ArtifactPreview
      description: A tabular preview of an artifact's contents.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````