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

# List assets

> List assets you can access

Returns a page of assets (name, type, owner, folder, schedules) with pagination. Connection secrets and credentials are never included.

Use `limit` and `offset` to walk the full list. Pass `folderId` (folder asset UUID) to return only assets in that folder; omit it to list across all folders you can access.


## OpenAPI

````yaml api-reference/openapi.json GET /api/public/v1/assets
openapi: 3.0.0
info:
  title: Less Public API
  version: 1.0.0
  description: >-
    Integrator-facing JSON API. All paths are under `/api/public/v1` and match
    the route handlers in the Less webapp (`apps/webapp/src/app/api/public/v1`).
    Authenticate with `Authorization: Bearer <api-token>`.
servers:
  - url: https://{BaseURL}
    variables:
      BaseURL:
        default: app.less.tech
        description: >-
          Your workspace host (hostname only, no scheme or path). Defaults to
          app.less.tech; replace with your workspace host if different.
security:
  - bearerAuth: []
paths:
  /api/public/v1/assets:
    get:
      tags:
        - Assets
      summary: List assets
      description: >-
        Returns assets you can read, sorted by name. Internal-only asset types
        are omitted. Pagination uses `limit` and `offset` query parameters.
        Optionally filter to a single folder with `folderId`.
      parameters:
        - name: folderId
          in: query
          required: false
          schema:
            type: string
            format: uuid
          description: >-
            When set, only return assets in this folder. Omit to list assets
            across all folders you can access.
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 50
          description: Maximum number of assets to return (default 50, max 100).
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
          description: Number of assets to skip (for pagination).
      responses:
        '200':
          description: Assets returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicListAssetsSuccess'
        '400':
          description: Invalid `limit` or `offset`.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicApiErrorBody'
        '401':
          description: Missing or invalid bearer token.
        '500':
          description: Unexpected error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicApiErrorBody'
components:
  schemas:
    PublicListAssetsSuccess:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/PublicAsset'
        meta:
          $ref: '#/components/schemas/PublicListAssetsMeta'
      required:
        - data
        - meta
    PublicApiErrorBody:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
            message:
              type: string
          required:
            - code
            - message
      required:
        - error
    PublicAsset:
      type: object
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
        description:
          type: string
          nullable: true
        type:
          type: string
          description: Human-readable asset type from the product (e.g. Model, Source).
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
        owner:
          $ref: '#/components/schemas/PublicAssetOwner'
        parentFolder:
          $ref: '#/components/schemas/PublicAssetFolder'
          description: Folder containing this asset, if any.
          nullable: true
        schedules:
          type: array
          items:
            $ref: '#/components/schemas/PublicAssetSchedule'
        details:
          $ref: '#/components/schemas/PublicAssetDetails'
          description: Extra fields for certain kinds (e.g. table prefix for models).
      required:
        - id
        - name
        - description
        - type
        - createdAt
        - updatedAt
        - owner
        - parentFolder
        - schedules
    PublicListAssetsMeta:
      type: object
      properties:
        limit:
          type: integer
          minimum: 1
          maximum: 100
          description: Page size for this response.
        offset:
          type: integer
          minimum: 0
          description: Number of assets skipped from the start of the sorted list.
        hasMore:
          type: boolean
          description: True when the full page was returned; there may be more assets.
      required:
        - limit
        - offset
        - hasMore
    PublicAssetOwner:
      type: object
      properties:
        id:
          type: string
          format: uuid
          nullable: true
          description: Owner user id.
        displayName:
          type: string
          nullable: true
          description: Display name of the user who owns the asset.
        email:
          type: string
          nullable: true
          description: Owner email when available.
      required:
        - id
        - displayName
        - email
    PublicAssetFolder:
      type: object
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
      required:
        - id
        - name
    PublicAssetSchedule:
      type: object
      properties:
        cronExpression:
          type: string
          description: Cron expression for scheduled runs.
        timezone:
          type: string
          description: Timezone for the schedule.
        nextRunAt:
          type: string
          nullable: true
          description: ISO 8601 timestamp of the next scheduled run, if known.
      required:
        - cronExpression
        - timezone
        - nextRunAt
    PublicAssetDetails:
      type: object
      properties:
        tablePrefix:
          type: string
          nullable: true
          description: Saved table prefix for models.
        computeProfile:
          type: string
          nullable: true
          description: Compute size label for orchestrations.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````