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

# Get Overview



## OpenAPI

````yaml /api-reference/openapi.json get /api/overview
openapi: 3.1.0
info:
  title: Blindsight API
  version: 0.1.0
  description: >-
    The full Blindsight REST surface, generated from the running application.
    Replace the server host with your own deployment.


    For the Runtime Security integration surface (scan, proxy, tool calls) see
    the Runtime Security spec, which is hand written and carries worked
    examples.
servers:
  - url: https://api.your-blindsight.com
    description: Your Blindsight deployment
security: []
paths:
  /api/overview:
    get:
      tags:
        - overview
      summary: Get Overview
      operationId: get_overview_api_overview_get
      parameters:
        - name: days
          in: query
          required: false
          schema:
            type: integer
            maximum: 365
            minimum: 1
            description: Runtime Security / compliance window
            default: 14
            title: Days
          description: Runtime Security / compliance window
        - name: drift_baseline_days
          in: query
          required: false
          schema:
            type: integer
            maximum: 365
            minimum: 2
            default: 30
            title: Drift Baseline Days
        - name: drift_recent_days
          in: query
          required: false
          schema:
            type: integer
            maximum: 90
            minimum: 1
            default: 7
            title: Drift Recent Days
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeploymentOverviewResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    DeploymentOverviewResponse:
      properties:
        meta:
          $ref: '#/components/schemas/OverviewMeta'
        runtime_security:
          anyOf:
            - $ref: '#/components/schemas/RuntimeSecuritySummary'
            - type: 'null'
        shadow_ai:
          anyOf:
            - $ref: '#/components/schemas/ShadowAiSummary'
            - type: 'null'
        data_security:
          anyOf:
            - $ref: '#/components/schemas/DataSecuritySummary'
            - type: 'null'
        dlp:
          anyOf:
            - $ref: '#/components/schemas/DlpSummary'
            - type: 'null'
        compliance:
          anyOf:
            - $ref: '#/components/schemas/ComplianceSummary'
            - type: 'null'
        drift:
          anyOf:
            - $ref: '#/components/schemas/DriftSummary'
            - type: 'null'
        attention:
          items:
            $ref: '#/components/schemas/AttentionItem'
          type: array
          title: Attention
          default: []
      type: object
      required:
        - meta
      title: DeploymentOverviewResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    OverviewMeta:
      properties:
        workspace_id:
          type: string
          title: Workspace Id
        range_days:
          type: integer
          title: Range Days
        generated_at:
          type: string
          format: date-time
          title: Generated At
        onboarded:
          type: boolean
          title: Onboarded
        capabilities:
          items:
            type: string
          type: array
          title: Capabilities
          default: []
        enabled_feature_keys:
          items:
            type: string
          type: array
          title: Enabled Feature Keys
          default: []
      type: object
      required:
        - workspace_id
        - range_days
        - generated_at
        - onboarded
      title: OverviewMeta
    RuntimeSecuritySummary:
      properties:
        total_events:
          type: integer
          title: Total Events
        verdict_breakdown:
          additionalProperties:
            type: integer
          type: object
          title: Verdict Breakdown
          default: {}
        pii_hits:
          type: integer
          title: Pii Hits
          default: 0
        injection_hits:
          type: integer
          title: Injection Hits
          default: 0
        avg_latency_ms:
          anyOf:
            - type: number
            - type: 'null'
          title: Avg Latency Ms
        p95_latency_ms:
          anyOf:
            - type: number
            - type: 'null'
          title: P95 Latency Ms
        top_threats:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Top Threats
          default: []
        series:
          items:
            $ref: '#/components/schemas/AnalyticsBucket'
          type: array
          title: Series
          default: []
      type: object
      required:
        - total_events
      title: RuntimeSecuritySummary
    ShadowAiSummary:
      properties:
        ai_systems_in_use:
          type: integer
          title: Ai Systems In Use
          default: 0
        managed_providers:
          type: integer
          title: Managed Providers
          default: 0
        discovered_total:
          type: integer
          title: Discovered Total
          default: 0
        shadow:
          type: integer
          title: Shadow
          default: 0
        sanctioned:
          type: integer
          title: Sanctioned
          default: 0
        blocked:
          type: integer
          title: Blocked
          default: 0
      type: object
      title: ShadowAiSummary
    DataSecuritySummary:
      properties:
        dataset_count:
          type: integer
          title: Dataset Count
          default: 0
        open_critical_issues:
          type: integer
          title: Open Critical Issues
          default: 0
        total_vulnerabilities:
          type: integer
          title: Total Vulnerabilities
          default: 0
        health_breakdown:
          additionalProperties:
            type: integer
          type: object
          title: Health Breakdown
          default: {}
        scan_counts:
          additionalProperties:
            type: integer
          type: object
          title: Scan Counts
          default: {}
        active_scans:
          type: integer
          title: Active Scans
          default: 0
        recent_scans:
          items:
            $ref: '#/components/schemas/RecentScanItem'
          type: array
          title: Recent Scans
          default: []
      type: object
      title: DataSecuritySummary
    DlpSummary:
      properties:
        active_endpoints:
          type: integer
          title: Active Endpoints
          default: 0
        total_endpoints:
          type: integer
          title: Total Endpoints
          default: 0
        policy_count:
          type: integer
          title: Policy Count
          default: 0
        recent_blocked:
          type: integer
          title: Recent Blocked
          default: 0
        recent_flagged:
          type: integer
          title: Recent Flagged
          default: 0
      type: object
      title: DlpSummary
    ComplianceSummary:
      properties:
        audit_events_total:
          type: integer
          title: Audit Events Total
          default: 0
        by_severity:
          additionalProperties:
            type: integer
          type: object
          title: By Severity
          default: {}
        usage_by_day:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Usage By Day
          default: []
      type: object
      title: ComplianceSummary
    DriftSummary:
      properties:
        top_dimension:
          anyOf:
            - type: string
            - type: 'null'
          title: Top Dimension
        top_label:
          anyOf:
            - type: string
            - type: 'null'
          title: Top Label
        psi:
          type: number
          title: Psi
          default: 0
        severity:
          type: string
          title: Severity
          default: stable
      type: object
      title: DriftSummary
    AttentionItem:
      properties:
        capability:
          type: string
          title: Capability
        severity:
          type: string
          title: Severity
        kind:
          type: string
          title: Kind
        title:
          type: string
          title: Title
        detail:
          type: string
          title: Detail
        count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Count
        href:
          anyOf:
            - type: string
            - type: 'null'
          title: Href
      type: object
      required:
        - capability
        - severity
        - kind
        - title
        - detail
      title: AttentionItem
      description: >-
        A single high-signal item aggregated across capabilities for the top
        strip.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    AnalyticsBucket:
      properties:
        date:
          type: string
          title: Date
        allow:
          type: integer
          title: Allow
        flag:
          type: integer
          title: Flag
        redact:
          type: integer
          title: Redact
        block:
          type: integer
          title: Block
        total:
          type: integer
          title: Total
      type: object
      required:
        - date
        - allow
        - flag
        - redact
        - block
        - total
      title: AnalyticsBucket
    RecentScanItem:
      properties:
        id:
          type: string
          title: Id
        scan_type:
          type: string
          title: Scan Type
        status:
          type: string
          title: Status
        dataset_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Dataset Name
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Created At
      type: object
      required:
        - id
        - scan_type
        - status
      title: RecentScanItem

````