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

# Download asset

> Download an uploaded asset. Readable without signing in only when it belongs to a public project; image types are served inline, everything else as an attachment.



## OpenAPI

````yaml /openapi.json get /asset/{id}
openapi: 3.1.0
info:
  title: Kaneo API
  version: 1.0.0
  description: Kaneo Project Management API - Manage projects, tasks, labels, and more
servers:
  - url: https://cloud.kaneo.app/api
    description: Kaneo API Server
security:
  - bearerAuth: []
paths:
  /asset/{id}:
    get:
      tags:
        - Assets
      summary: Download asset
      description: >-
        Download an uploaded asset. Readable without signing in only when it
        belongs to a public project; image types are served inline, everything
        else as an attachment.
      operationId: getAsset
      parameters:
        - schema:
            type: string
          required: true
          name: id
          in: path
      responses:
        '200':
          description: The requested asset binary stream
          content:
            '*/*':
              schema:
                type: string
                format: binary
        '304':
          description: Not modified
        '403':
          description: No access to this asset
        '404':
          description: Asset not found
      security: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key or session token (Bearer)

````