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

# Get Asset Download Info

> Get download metadata for an asset, used by the edge worker for chunk reassembly



## OpenAPI

````yaml /api-reference/openapi.json get /assets/{asset_id}/download/info
openapi: 3.1.0
info:
  title: Aspect Platform API
  description: A FastAPI application for Aspect Platform functionality
  version: 0.0.0
servers:
  - url: https://api.aspect.inc
security:
  - BearerAuth: []
  - ApiKeyAuth: []
paths:
  /assets/{asset_id}/download/info:
    get:
      tags:
        - Assets
      summary: Get Asset Download Info
      description: >-
        Get download metadata for an asset, used by the edge worker for chunk
        reassembly
      operationId: get_Assets_assets_asset_id_download_info
      parameters:
        - name: asset_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Asset ID
            description: The ID of the asset to get download info for
          description: The ID of the asset to get download info for
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AssetDownloadInfoResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    AssetDownloadInfoResponse:
      properties:
        asset_id:
          type: string
          format: uuid
          title: Asset Id
          description: Asset ID
        manifest_id:
          type: string
          format: uuid
          title: Manifest Id
          description: Manifest ID from the current revision
        size_bytes:
          type: integer
          title: Size Bytes
          description: Total file size in bytes
        chunk_count:
          type: integer
          title: Chunk Count
          description: Number of chunks in the file
        mime_type:
          type: string
          title: Mime Type
          description: MIME type of the asset
        filename:
          type: string
          title: Filename
          description: Original filename of the asset
      type: object
      required:
        - asset_id
        - manifest_id
        - size_bytes
        - chunk_count
        - mime_type
        - filename
      title: AssetDownloadInfoResponse
      description: >-
        API response for download info endpoint — metadata needed by edge worker
        for chunk reassembly
    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
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: JWT in Authorization header. 'Bearer ' prefix optional.
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Aspect API key (sk_...) in Authorization header. 'Bearer ' optional.

````