> ## 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 offers

> The offers of an agent (or the workspace pool), cursor-paginated. Pass `agentId` to scope to one agent.



## OpenAPI

````yaml /openapi.json get /v1/offers
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/offers:
    get:
      tags:
        - Offers
      summary: List offers
      description: >-
        The offers of an agent (or the workspace pool), cursor-paginated. Pass
        `agentId` to scope to one agent.
      operationId: PublicOffersController_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: true
          in: query
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedOffersDto'
      security:
        - api-key: []
components:
  schemas:
    PaginatedOffersDto:
      type: object
      properties:
        data:
          description: The items of this page.
          type: array
          items:
            $ref: '#/components/schemas/PublicOfferDto'
        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
    PublicOfferDto:
      type: object
      properties:
        id:
          type: string
        agentId:
          type: object
          nullable: true
        key:
          type: string
        name:
          $ref: '#/components/schemas/LocalizedTextDto'
        description:
          type: string
        price:
          nullable: true
          type: object
          allOf:
            - $ref: '#/components/schemas/OfferPriceDto'
        features:
          type: array
          items:
            $ref: '#/components/schemas/LocalizedTextDto'
        highlight:
          type: boolean
        ctaLinkId:
          type: object
          nullable: true
        ctaLabel:
          nullable: true
          type: object
          allOf:
            - $ref: '#/components/schemas/LocalizedTextDto'
        status:
          type: string
          enum:
            - active
            - archived
        createdAt:
          type: string
        updatedAt:
          type: string
      required:
        - id
        - agentId
        - key
        - name
        - description
        - features
        - highlight
        - ctaLinkId
        - status
        - createdAt
        - updatedAt
    LocalizedTextDto:
      type: object
      properties:
        es:
          type: string
          maxLength: 200
        en:
          type: string
          maxLength: 200
    OfferPriceDto:
      type: object
      properties:
        amount:
          type: number
          description: The figure the server formats; never the model.
        currency:
          type: string
          enum:
            - USD
            - EUR
            - CLP
            - MXN
            - ARS
            - COP
            - PEN
            - BRL
            - UYU
            - GBP
        period:
          type: string
          enum:
            - month
            - year
            - once
          nullable: true
      required:
        - amount
        - currency
        - period
  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.

````