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

# List packages

> Returns the complete storefront-visible, priced package catalog. This endpoint is not paginated.



## OpenAPI

````yaml /openapi/creator.yaml get /packages
openapi: 3.1.0
info:
  title: Passionfroot Creator API
  version: 1.0.0-alpha
  description: >
    Access a creator's own partners, collaborations, placements, catalog,
    proposals, and conversations.

    The API is in alpha. Every operation is restricted to the creator account
    that owns the API key.
servers:
  - url: https://workspace.passionfroot.me/api/creators/v1
security:
  - bearerAuth: []
tags:
  - name: Placements
  - name: Partners
  - name: Collaborations
  - name: Conversations
  - name: Catalog
  - name: Requests
  - name: Proposals
paths:
  /packages:
    get:
      tags:
        - Catalog
      summary: List packages
      description: >-
        Returns the complete storefront-visible, priced package catalog. This
        endpoint is not paginated.
      operationId: listCreatorPackages
      responses:
        '200':
          description: Storefront-visible packages.
          content:
            application/json:
              schema:
                type: object
                required:
                  - data
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Package'
              example:
                data:
                  - id: pkg_abc
                    name: Newsletter + Social Bundle
                    priceCents: 250000
                    pricingModel: fixed_package
                    currency: EUR
                    products:
                      - productId: prod_abc
                        name: Dedicated Newsletter
                        quantity: 1
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '429':
          $ref: '#/components/responses/TooManyRequests'
components:
  schemas:
    Package:
      type: object
      required:
        - id
        - name
        - priceCents
        - pricingModel
        - currency
        - products
      properties:
        id:
          type: string
        name:
          type: string
        priceCents:
          type: integer
        pricingModel:
          type: string
          enum:
            - fixed_package
            - per_placement
        currency:
          type: string
        products:
          type: array
          items:
            type: object
            required:
              - productId
              - name
              - quantity
            properties:
              productId:
                type: string
              name:
                type: string
              quantity:
                type: integer
                minimum: 1
    Error:
      type: object
      additionalProperties: false
      required:
        - error
      properties:
        error:
          type: string
  responses:
    Unauthorized:
      description: Missing, invalid, expired, or revoked API key.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Forbidden:
      description: The key lacks access or the required scope.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    TooManyRequests:
      description: Rate limit exceeded.
      headers:
        Retry-After:
          $ref: '#/components/headers/RetryAfter'
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: Too many requests, please try again later.
  headers:
    RetryAfter:
      description: Seconds to wait before retrying.
      schema:
        type: integer
        minimum: 1
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Passionfroot API key
      description: Create an API key from Settings → API in an approved Creator workspace.

````