Conga Health Check API

The Health Check API from Conga — 2 operation(s) for health check.

Operations 2

GET /api/conversion-management/v1/health/live Check for liveness
GET /api/conversion-management/v1/health/ready Check for readiness

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/conga-health-check-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

conga-health-check-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Conversion Management Health Check API
  version: v1
servers:
- url: https://rls.congacloud.com
- url: https://preview-rls09.congacloud.com
security:
- bearerAuth: []
tags:
- name: Health Check
paths:
  /api/conversion-management/v1/health/live:
    get:
      tags:
      - Health Check
      summary: Check for liveness
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthCheckSummary'
              example:
                Status: Healthy
                ServiceVersion: 22.6.0.34
                Duration: 1.9753
        '503':
          description: Service Temporarily Unavailable
  /api/conversion-management/v1/health/ready:
    get:
      tags:
      - Health Check
      summary: Check for readiness
      parameters:
      - name: deepCheck
        in: query
        style: form
        schema:
          type: boolean
          default: false
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthCheckSummary'
              example:
                Status: Healthy
                ServiceVersion: 22.6.0.34
                ComponentHealthSummary:
                - Name: Index Cache
                  Status: Healthy
                  Duration: 314.4967
                - Name: Data Cache
                  Status: Healthy
                  Duration: 385.204
                - Name: Data Config
                  Status: Healthy
                  Duration: 418.9651
                - Name: Queue
                  Status: Healthy
                  Duration: 446.0765
                - Name: Topic
                  Status: Healthy
                  Duration: 373.9502
                Duration: 460.0827
        '503':
          description: Service Temporarily Unavailable
components:
  schemas:
    ComponentHealthCheckSummary:
      type: object
      properties:
        Name:
          type:
          - string
          - 'null'
        Status:
          type:
          - string
          - 'null'
        Error:
          type:
          - string
          - 'null'
        Result:
          type:
          - object
          - 'null'
          additionalProperties: {}
        Duration:
          type: number
          format: double
      additionalProperties: false
    HealthCheckSummary:
      type: object
      properties:
        Status:
          type:
          - string
          - 'null'
        ServiceVersion:
          type:
          - string
          - 'null'
        ComponentHealthSummary:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/ComponentHealthCheckSummary'
        Duration:
          type: number
          format: double
      additionalProperties: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT