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

# List images

> The images an agent may show, with the stable `key` it emits and the description the planner reads to choose one. Every `url` is signed and expires.



## OpenAPI

````yaml /openapi.json get /v1/assets
openapi: 3.0.0
info:
  title: wondeya Developer API
  description: >-
    The public REST API for building on wondeya: agents, projects, pages,
    knowledge, assets, brand, theme, usage, retrieval and chat, authenticated by
    a workspace API key (`Authorization: Bearer wdy_live_…`).
  version: 0.1.0
  contact:
    name: wondeya
    url: https://wondeya.com
    email: team@wondeya.com
  license:
    name: Proprietary
    url: https://wondeya.com/terms
servers:
  - url: https://api.wondeya.com
    description: Production
  - url: http://localhost:8080
    description: Development
security: []
tags:
  - name: Identity
  - name: Agents
  - name: Projects
  - name: Pages
  - name: Knowledge
  - name: Assets
  - name: Brand
  - name: Usage
  - name: Chat
paths:
  /v1/assets:
    get:
      tags:
        - Assets
      summary: List images
      description: >-
        The images an agent may show, with the stable `key` it emits and the
        description the planner reads to choose one. Every `url` is signed and
        expires.
      operationId: PublicAssetsController_list_v1
      parameters:
        - name: limit
          required: false
          in: query
          description: How many items to return (1–100).
          schema:
            minimum: 1
            maximum: 100
            default: 50
            type: number
        - name: after
          required: false
          in: query
          description: >-
            Opaque cursor: pass the `nextCursor` of a previous page to get the
            next one.
          schema:
            type: string
        - name: before
          required: false
          in: query
          description: Opaque cursor for paging backwards (items before it).
          schema:
            type: string
        - name: agentId
          required: false
          in: query
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedAssetsDto'
      security:
        - api-key: []
components:
  schemas:
    PaginatedAssetsDto:
      type: object
      properties:
        data:
          description: The items of this page.
          type: array
          items:
            $ref: '#/components/schemas/PublicAssetDto'
        hasMore:
          type: boolean
          description: True when more items exist after this page.
        nextCursor:
          type: string
          nullable: true
          description: >-
            Opaque cursor to pass as `after` for the next page; null on the last
            page.
      required:
        - data
        - hasMore
        - nextCursor
    PublicAssetDto:
      type: object
      properties:
        id:
          type: string
        agentId:
          type: object
          nullable: true
          description: null = the workspace pool.
        key:
          type: string
          description: The stable key the agent emits to show it.
        kind:
          type: string
        mimeType:
          type: string
        byteSize:
          type: number
        width:
          type: number
        height:
          type: number
        orientation:
          type: string
        topics:
          type: array
          items:
            type: string
        description:
          type: string
          description: What the image SHOWS; the planner reads this.
        alt:
          $ref: '#/components/schemas/PublicAssetAltDto'
        status:
          type: string
          description: '`pending`, `ready`, `failed`, …'
        error:
          type: string
        url:
          type: string
          format: uri
          description: A signed, short-lived URL. Never store it.
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
      required:
        - id
        - agentId
        - key
        - kind
        - mimeType
        - byteSize
        - orientation
        - topics
        - description
        - alt
        - status
        - url
        - createdAt
        - updatedAt
    PublicAssetAltDto:
      type: object
      properties:
        es:
          type: string
        en:
          type: string
      required:
        - es
        - en
  securitySchemes:
    api-key:
      scheme: bearer
      bearerFormat: opaque
      type: http
      description: >-
        A workspace API key: wdy_live_… / wdy_test_…. Created at POST
        /workspaces/{tenantId}/keys and shown exactly once.

````