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

# Get v2readiness

> Check platform readiness (configuration, connectivity, databases). Reserved to super admins



## OpenAPI

````yaml /api-reference/swagger.yml get /v2/readiness
openapi: 3.0.0
info:
  version: 1.0.0
  title: Prisme.ai APIs
  description: Prisme.ai APIs specifications
  termsOfService: https://www.prisme.ai/mentions-legales
  contact:
    name: Prisme.ai Support Team
    email: support@prisme.ai
    url: https://www.prisme.ai
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html
servers:
  - url: https://api.eda.prisme.ai
  - url: http://localhost:3001
security:
  - BearerAuth: []
  - WorkspaceApiKeyAuth: []
  - BearerAuth: []
    WorkspaceApiKeyAuth: []
paths:
  /v2/readiness:
    get:
      tags:
        - monitoring
      description: >-
        Check platform readiness (configuration, connectivity, databases).
        Reserved to super admins
      operationId: getPlatformReadiness
      parameters:
        - name: services
          in: query
          description: >-
            Only check given services, comma separated
            (api-gateway,runtime,events,workspaces)
          schema:
            type: string
          allowReserved: true
      responses:
        '200':
          description: Success Response
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - services
                properties:
                  status:
                    type: string
                    enum:
                      - error
                      - ready
                  services:
                    type: object
                    additionalProperties:
                      $ref: '#/components/schemas/ServiceReadiness'
        '400':
          description: Platform not ready
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadParametersError'
        '401':
          description: AuthenticationError
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthenticationError'
components:
  schemas:
    ServiceReadiness:
      type: object
      properties:
        status:
          type: string
        url:
          type: string
        response:
          $ref: '#/components/schemas/ServiceReadinessResponse'
    BadParametersError:
      type: object
      properties:
        error:
          type: string
          example: BadParameters
        message:
          type: string
        details: {}
    AuthenticationError:
      type: object
      properties:
        error:
          type: string
          example: AuthenticationError
        message:
          type: string
          example: Unauthenticated
    ServiceReadinessResponse:
      type: object
      properties:
        status:
          type: string
        errors:
          type: array
          items:
            allOf:
              - $ref: '#/components/schemas/GenericError'
              - type: object
                properties:
                  module:
                    type: string
                  driver:
                    type: string
        modulesReady:
          type: array
          items:
            type: object
            properties:
              module:
                type: string
              driver:
                type: string
    GenericError:
      type: object
      properties:
        error:
          type: string
          example: ObjectNotFound
        message:
          type: string
        details:
          $ref: '#/components/schemas/AnyValue'
    AnyValue: {}
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    WorkspaceApiKeyAuth:
      type: apiKey
      in: header
      name: x-prismeai-api-key

````