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

# Base overview

> The headline numbers of the space memory, with no personal data.



## OpenAPI

````yaml openapi/en/cell.json GET /v1/insights/overview
openapi: 3.1.0
info:
  title: Niadra data API
  version: '1'
  description: >-
    Writing, context, history, objects, identity, privacy and governance of one
    space. Every space has a stable address, with the space and the region in
    its name.
servers:
  - url: https://{space}.{region}.api.niadra.com
    variables:
      space:
        default: acme-prod
        description: The space, which comes in the source key.
      region:
        default: us-east-1
        description: The region of the space, which also comes in the key.
security: []
paths:
  /v1/insights/overview:
    get:
      summary: Base overview
      description: >-
        The headline counts of the space memory, computed every night per entity
        and dimension. Buckets smaller than the minimum group size are
        suppressed and counted in `suppressed_buckets`.


        **Authentication.** Source key with the `analytics` scope, or a Console
        person token with the analysis role (or admin). People with the vendor
        role have no access.
      operationId: overview_v1_insights_overview_get
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OverviewResponse'
              example:
                day: '2026-09-22'
                dimensions:
                  episodes.normalized_category:
                    technician_visit: 1840
                    invoice: 1312
                    cancellation: 204
                  open_items.status:
                    open: 912
                    overdue: 214
                suppressed_buckets: 6
          description: Counts per dimension, as of the last nightly run.
      security:
        - sourceKey: []
components:
  schemas:
    OverviewResponse:
      additionalProperties: false
      properties:
        day:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Day
        dimensions:
          additionalProperties:
            additionalProperties:
              type: integer
            type: object
          title: Dimensions
          type: object
        suppressed_buckets:
          title: Suppressed Buckets
          type: integer
      required:
        - day
        - dimensions
        - suppressed_buckets
      title: OverviewResponse
      type: object
  securitySchemes:
    sourceKey:
      type: http
      scheme: bearer
      description: nia_sk_...

````