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

# Get system metadata.

> Returns metadata about the system state, like whether it has been initialized.



## OpenAPI

````yaml /api-reference/openapi.json get /api/metadata
openapi: 3.0.0
info:
  title: Open Attack Surface Management
  description: Open-source platform for cybersecurity Attack Surface Management (ASM)
  version: '1.0'
  contact: {}
servers:
  - url: https://{baseUrl}/api/v1
    variables:
      baseUrl:
        default: localhost:3000
        description: API server hostname with port (e.g. localhost:3000, api.example.com)
security: []
tags: []
externalDocs:
  description: Authentication Docs
  url: auth/docs
paths:
  /api/metadata:
    get:
      tags:
        - Root
      summary: Get system metadata.
      description: >-
        Returns metadata about the system state, like whether it has been
        initialized.
      operationId: RootController_getMetadata
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetMetadataDto'
                allOf:
                  - $ref: '#/components/schemas/AppResponseSerialization'
components:
  schemas:
    GetMetadataDto:
      type: object
      properties:
        isInit:
          type: boolean
        isAssistant:
          type: boolean
        name:
          type: string
          description: System name
        logoPath:
          type: string
          description: Path to system logo
          nullable: true
        currentVersion:
          type: object
          description: Current system version
      required:
        - isInit
        - isAssistant
        - name
        - logoPath
        - currentVersion

````