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

# Get install setup status

> Returns whether the install needs onboarding. An install needs onboarding when no organizations exist in the database; the dashboard uses this to show a sign-up-first bootstrap flow on fresh deployments. This endpoint is unauthenticated so the login UI can call it before the user has a session.



## OpenAPI

````yaml https://app.stainless.com/api/spec/documented/avido/openapi.documented.yml get /v0/setup/status
openapi: 3.1.1
info:
  title: Avido API
  description: >-
    Avido's API for LLM usage events, tool calls, trace management, webhook
    validation, and more. See each endpoint's request/response schema for
    details.
  version: 0.1.0
  contact:
    name: Avido Support
    email: support@avidoai.com
    url: https://avidoai.com/support
servers:
  - url: https://api.avidoai.com
    description: Production API
security:
  - ApiKey: []
    ApplicationId: []
paths:
  /v0/setup/status:
    get:
      tags:
        - Setup
      summary: Get install setup status
      description: >-
        Returns whether the install needs onboarding. An install needs
        onboarding when no organizations exist in the database; the dashboard
        uses this to show a sign-up-first bootstrap flow on fresh deployments.
        This endpoint is unauthenticated so the login UI can call it before the
        user has a session.
      operationId: getSetupStatus
      responses:
        '200':
          description: Setup status retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SetupStatusResponse'
              examples:
                fresh:
                  summary: Fresh install — no orgs yet
                  value:
                    needsOnboarding: true
                configured:
                  summary: At least one organization exists
                  value:
                    needsOnboarding: false
        '500':
          description: internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security: []
components:
  schemas:
    SetupStatusResponse:
      type: object
      properties:
        needsOnboarding:
          type: boolean
          description: >-
            True when the install has no organizations yet and should present
            the onboarding flow instead of the login screen.
          example: false
      required:
        - needsOnboarding
      additionalProperties: false
      title: SetupStatusResponse
      description: >-
        Response body for the setup-status endpoint. Changes from true to false
        exactly once, when the first organization is created.
    ErrorResponse:
      type: object
      properties:
        message:
          type: string
          description: A human-readable error message explaining the error.
          example: Resource not found
      required:
        - message
      additionalProperties: false
      title: ErrorResponse
      description: Standard error format for failed API operations.
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: Your unique Avido API key
    ApplicationId:
      type: apiKey
      in: header
      name: x-application-id
      description: Your unique Avido Application ID

````