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

# List organization customers

> Returns a paginated list of the organization’s customers (the users who have transacted with its agents/plans), optionally narrowed by a free-text search. The response is `{ items, total }`, where `total` is the count across all pages. Each item is enriched with the buyer’s userName/userEmail from their user profile when available. Requires a Nevermined API key, organization admin privileges, and the Enterprise tier.



## OpenAPI

````yaml /api-reference/organizations-openapi.json get /organizations/{orgId}/customers
openapi: 3.0.0
info:
  title: Nevermined Organizations API
  description: >-
    Manage a Nevermined organization programmatically — members, tiers, groups &
    budgets, treasury wallets, customers, webhooks, analytics, and
    agent-discovery surfaces.
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.sandbox.nevermined.app/api/v1
    description: Sandbox
  - url: https://api.live.nevermined.app/api/v1
    description: Live
security: []
tags:
  - name: Organizations
    x-group: General
    description: Organization settings, members & roles, and workspace context.
  - name: Organizations - Billing
    x-group: Billing
    description: Tiers, subscriptions, invoices, checkout, and the public tier catalog.
  - name: Groups
    x-group: Groups & Budgets
    description: Organization groups, per-group budgets, and shared payment methods.
  - name: Organizations - Wallets
    x-group: Wallets
    description: Custodial stablecoin treasury wallets.
  - name: Organizations - Customers
    x-group: Customers
    description: The white-label customer CRM (Enterprise).
  - name: Organizations - Analytics
    x-group: Analytics
    description: Revenue, MRR, usage, conversion, and per-member metrics.
  - name: Organizations - Webhooks
    x-group: Webhooks
    description: Outbound webhook subscriptions and deliveries.
  - name: Organizations - Activity
    x-group: Activity
    description: The organization activity feed.
  - name: Organizations - Realtime
    x-group: Realtime
    description: Realtime WebSocket secret management (Enterprise).
  - name: Invitations
    x-group: Invitations
    description: Invite people to an organization.
  - name: Organizations - Integration
    x-group: Agent Discovery
    description: >-
      Public agent-discovery surfaces (llms.txt, agentic-instructions.md,
      ai-catalog.json).
paths:
  /organizations/{orgId}/customers:
    get:
      tags:
        - Organizations - Customers
      summary: List organization customers
      description: >-
        Returns a paginated list of the organization’s customers (the users who
        have transacted with its agents/plans), optionally narrowed by a
        free-text search. The response is `{ items, total }`, where `total` is
        the count across all pages. Each item is enriched with the buyer’s
        userName/userEmail from their user profile when available. Requires a
        Nevermined API key, organization admin privileges, and the Enterprise
        tier.
      operationId: OrganizationCustomersController_list
      parameters:
        - name: orgId
          required: true
          in: path
          description: Organization ID
          schema:
            type: string
            example: org-abc123
        - name: search
          required: false
          in: query
          description: Free-text search across customer identifiers.
          schema:
            example: us-2f4a
            type: string
        - name: limit
          required: false
          in: query
          description: Items per page (1–200). Defaults to 50.
          schema:
            example: 50
            type: number
        - name: page
          required: false
          in: query
          description: 1-based page number. Defaults to 1.
          schema:
            example: 1
            type: number
      responses:
        '200':
          description: Paginated customer list as `{ items, total }`
        '401':
          description: Missing or invalid Nevermined API key
        '403':
          description: >-
            Caller is not an organization admin, or the org is not on the
            Enterprise tier
      security:
        - Authorization: []
components:
  securitySchemes:
    Authorization:
      scheme: bearer
      bearerFormat: JWT
      type: http

````

## Related topics

- [Customers](/docs/solutions/organizations/customers.md)
- [Export organization customers as CSV](/docs/api-reference/organizations--customers/export-organization-customers-as-csv.md)
- [List organization activity events](/docs/api-reference/organizations--activity/list-organization-activity-events.md)
- [Organizations & Workspaces](/docs/integrate/patterns/organizations.md)
- [Get an organization customer](/docs/api-reference/organizations--customers/get-an-organization-customer.md)
