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

# Check if the API is ready to answer requests



## OpenAPI

````yaml /openapi.json get /ready
openapi: 3.0.0
info:
  title: Output.ai API
  version: 1.0.0
  description: API for managing and executing Output.ai workflows
servers:
  - url: http://localhost:3001
    description: Development server
security: []
tags: []
paths:
  /ready:
    get:
      summary: Check if the API is ready to answer requests
      responses:
        '200':
          description: It is ready
        '503':
          description: It is having problems

````