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

# List Clients

> Lists the Clients this key can access, newest first. A client-scoped key can access only its assigned Client. Business accounts receive an empty list.



## OpenAPI

````yaml /openapi/public-api-v1.json get /v1/clients
openapi: 3.0.0
info:
  title: Onsomble API
  description: >-
    Connect Onsomble to your reporting and operational workflows. Read
    discoverability results or start a Scan from another system.
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.onsomble.ai
    description: Production
security:
  - apiKeyAuth: []
tags:
  - name: Sites
    description: Sites connected to your account.
  - name: Clients
    description: Clients managed by agency accounts.
  - name: Scans
    description: Scan history, status, and controls.
  - name: Reports
    description: AI discoverability results.
paths:
  /v1/clients:
    get:
      tags:
        - Clients
      summary: List Clients
      description: >-
        Lists the Clients this key can access, newest first. A client-scoped key
        can access only its assigned Client. Business accounts receive an empty
        list.
      operationId: listClients
      parameters:
        - name: cursor
          required: false
          in: query
          description: Opaque cursor from the previous page. Omit for the first page.
          schema:
            type: string
        - name: limit
          required: false
          in: query
          schema:
            minimum: 1
            maximum: 100
            default: 25
            type: number
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListClientsResponseDto'
components:
  schemas:
    ListClientsResponseDto:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/ClientDto'
        nextCursor:
          type: string
          nullable: true
          description: Opaque cursor for the next page, or null at the end.
      required:
        - data
        - nextCursor
    ClientDto:
      type: object
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
          example: Acme Holdings
        websiteUrl:
          type: string
          nullable: true
          example: https://acme.example
          description: The Client organisation's own website, if known.
        industry:
          type: string
          nullable: true
          example: Retail
        description:
          type: string
          nullable: true
        createdAt:
          type: string
          example: '2026-07-01T09:30:00.000Z'
        updatedAt:
          type: string
          example: '2026-07-10T17:12:00.000Z'
      required:
        - id
        - name
        - websiteUrl
        - industry
        - description
        - createdAt
        - updatedAt
  securitySchemes:
    apiKeyAuth:
      scheme: bearer
      bearerFormat: ons_…
      type: http
      description: An API key created in Settings → Account → API Keys.

````