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

# Get Org Customers

> Retrieve a list of all customers associated with the organization.

This endpoint provides detailed information including customer account status, trial periods, payment status, and scan schedules.



## OpenAPI

````yaml POST /get-organization-customers
openapi: 3.1.0
info:
  title: Mindshare API
  description: >-
    The Mindshare API provides comprehensive access to brand visibility
    analytics, customer intelligence, and growth tracking. Use this API to
    retrieve customer data, query groups, execution results, domain insights,
    and actionable recommendations for improving your brand's AI visibility.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.mindshare.so/customer/v1
security:
  - apiKeyHeader: []
paths:
  /get-organization-customers:
    post:
      description: >-
        Retrieve a list of all customers associated with the organization.


        This endpoint provides detailed information including customer account
        status, trial periods, payment status, and scan schedules.
      requestBody:
        description: Organization ID
        content:
          application/json:
            schema:
              type: object
              properties:
                organizationID:
                  type: number
                  description: The ID of the organization
              required:
                - organizationID
        required: true
      responses:
        '200':
          description: List of customers for the organization
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationCustomersResponse'
components:
  schemas:
    OrganizationCustomersResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Customer'
          description: List of customers
        version:
          type: string
          description: API version
        env:
          type: string
          description: Environment name
      required:
        - data
        - version
        - env
    Customer:
      type: object
      properties:
        id:
          type: number
          description: Customer ID
        name:
          type: string
          description: Customer name
        created_time:
          type: string
          format: date-time
          description: Customer creation timestamp
        trial_start:
          type: string
          format: date-time
          description: Trial start date
        trial_end:
          type: string
          format: date-time
          description: Trial end date
        last_scan_date:
          type: string
          format: date-time
          description: Last scan date
        next_scheduled_run:
          type: string
          format: date-time
          nullable: true
          description: Next scheduled run date
        paying_customer:
          type: boolean
          description: Whether the customer is a paying customer
        website_url:
          type: string
          format: uri
          description: Customer website URL
        view_report_url:
          type: string
          description: URL to view the customer report
      required:
        - id
        - name
        - created_time
        - trial_start
        - trial_end
        - last_scan_date
        - paying_customer
        - website_url
        - view_report_url
  securitySchemes:
    apiKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key

````