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

# Verify production runtime capabilities

> Runs a fixed, local, read-only probe of the production runtime. It accepts no model, text, module, URL, or filesystem input and performs no paid or third-party operation.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/runtime-capabilities
openapi: 3.1.0
info:
  title: The Prompting Company API
  version: 0.1.0
  description: >-
    Machine-readable contract for The Prompting Company organization-scoped API
    routes.
  contact:
    name: The Prompting Company
    url: https://promptingcompany.com/support
    email: support@promptingcompany.com
  license:
    name: Proprietary
    url: https://promptingcompany.com/terms
  termsOfService: https://promptingcompany.com/terms
servers:
  - url: https://app.promptingco.com
    description: Production
  - url: http://localhost:3000
    description: Local development
security: []
tags:
  - name: Visibility & Mentions
  - name: Knowledge
  - name: Content
  - name: Simulations
  - name: Apps & Publishing
  - name: Products
  - name: Service Status
paths:
  /api/v1/runtime-capabilities:
    get:
      tags:
        - Service Status
      summary: Verify production runtime capabilities
      description: >-
        Runs a fixed, local, read-only probe of the production runtime. It
        accepts no model, text, module, URL, or filesystem input and performs no
        paid or third-party operation.
      operationId: getRuntimeCapabilities
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  ok:
                    type: boolean
                    enum:
                      - true
                  data:
                    type: object
                    properties:
                      status:
                        type: string
                        enum:
                          - ok
                      checkedAt:
                        type: string
                      durationMs:
                        type: integer
                        minimum: 0
                      cached:
                        type: boolean
                      capabilities:
                        type: object
                        properties:
                          huggingFaceTokenizer:
                            type: boolean
                            enum:
                              - true
                          htmlParser:
                            type: boolean
                            enum:
                              - true
                          reactEmailRenderer:
                            type: boolean
                            enum:
                              - true
                          queueClientModule:
                            type: boolean
                            enum:
                              - true
                          temporalClientModule:
                            type: boolean
                            enum:
                              - true
                          vectorDbClientModule:
                            type: boolean
                            enum:
                              - true
                          agentFrameworkModule:
                            type: boolean
                            enum:
                              - true
                          loggingTransportModule:
                            type: boolean
                            enum:
                              - true
                        required:
                          - huggingFaceTokenizer
                          - htmlParser
                          - reactEmailRenderer
                          - queueClientModule
                          - temporalClientModule
                          - vectorDbClientModule
                          - agentFrameworkModule
                          - loggingTransportModule
                    required:
                      - status
                      - checkedAt
                      - durationMs
                      - cached
                      - capabilities
                required:
                  - ok
                  - data
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                type: object
                properties:
                  ok:
                    type: boolean
                    enum:
                      - false
                  code:
                    type: string
                  message:
                    type: string
                  details: {}
                required:
                  - ok
                  - code
                  - message
        '401':
          description: Authentication required
          content:
            application/json:
              schema:
                type: object
                properties:
                  ok:
                    type: boolean
                    enum:
                      - false
                  code:
                    type: string
                  message:
                    type: string
                  details: {}
                required:
                  - ok
                  - code
                  - message
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                type: object
                properties:
                  ok:
                    type: boolean
                    enum:
                      - false
                  code:
                    type: string
                  message:
                    type: string
                  details: {}
                required:
                  - ok
                  - code
                  - message
        '404':
          description: Not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  ok:
                    type: boolean
                    enum:
                      - false
                  code:
                    type: string
                  message:
                    type: string
                  details: {}
                required:
                  - ok
                  - code
                  - message
        '422':
          description: Validation failed
          content:
            application/json:
              schema:
                type: object
                properties:
                  ok:
                    type: boolean
                    enum:
                      - false
                  code:
                    type: string
                  message:
                    type: string
                  details: {}
                required:
                  - ok
                  - code
                  - message
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                type: object
                properties:
                  ok:
                    type: boolean
                    enum:
                      - false
                  code:
                    type: string
                  message:
                    type: string
                  details: {}
                required:
                  - ok
                  - code
                  - message
      security: []

````