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

# Get artifact content

> Download the raw content of an artifact (supports bundled artifacts).



## OpenAPI

````yaml /api-reference/openapi.json get /v1/artifacts/{artifact_id}/content
openapi: 3.1.0
info:
  title: Skyvern API
  description: API for Skyvern
  version: 1.0.0
servers:
  - url: https://api.skyvern.com
    x-fern-server-name: Cloud
  - url: https://api-staging.skyvern.com
    x-fern-server-name: Staging
  - url: http://localhost:8000
    x-fern-server-name: Local
security: []
paths:
  /v1/artifacts/{artifact_id}/content:
    get:
      tags:
        - Artifacts
      summary: Get artifact content
      description: Download the raw content of an artifact (supports bundled artifacts).
      operationId: get_artifact_content_v1_artifacts__artifact_id__content_get
      parameters:
        - name: artifact_id
          in: path
          required: true
          schema:
            type: string
            title: Artifact Id
      responses:
        '200':
          description: Raw artifact content
          content:
            application/json:
              schema: {}
        '206':
          description: Partial artifact content (Range request)
        '403':
          description: Invalid or expired artifact URL
        '404':
          description: Artifact not found or content unavailable
        '416':
          description: Range not satisfiable
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    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

````