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

# Get instance status

> Public instance setup status. When hasUsers is false the next signup becomes the instance admin.



## OpenAPI

````yaml /openapi.json get /instance/status
openapi: 3.1.0
info:
  title: Kaneo API
  version: 1.0.0
  description: Kaneo Project Management API - Manage projects, tasks, labels, and more
servers:
  - url: https://cloud.kaneo.app/api
    description: Kaneo API Server
security:
  - bearerAuth: []
paths:
  /instance/status:
    get:
      tags:
        - Instance
      summary: Get instance status
      description: >-
        Public instance setup status. When hasUsers is false the next signup
        becomes the instance admin.
      operationId: getInstanceStatus
      responses:
        '200':
          description: Instance status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InstanceStatus'
      security: []
components:
  schemas:
    InstanceStatus:
      type: object
      properties:
        hasUsers:
          type: boolean
        hasAdmin:
          type: boolean
      required:
        - hasUsers
        - hasAdmin
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key or session token (Bearer)

````