Certifaction Server API

Check the server's status

Operations 2

GET /health Check server health #
GET /ping Check that the API server is running

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/certifaction-server-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

certifaction-server-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: '{{ .ProductName }} Local Server API'
  description: 'A proxy server for integrating with the {{ .ProductName }} platform.


    ## Setup requirements


    1. Authentication is required to perform some operations. Please refer to the [Authentication](https://developers.certifaction.com/en/references/authentication) section to obtain an API Key or token.

    2. Start the local server on the CLI using the command `{{ .CommandName }} server`


    Refer to [our setup guide](https://developers.certifaction.com/en/guides/getting-started-api) to get started.

    '
  version: ''
servers:
- url: http://localhost:{port}
  variables:
    port:
      default: '8081'
security:
- api_key: []
tags:
- name: Server
  description: Check the server's status
paths:
  /health:
    get:
      operationId: server_health_check
      summary: Check server health
      responses:
        200:
          description: Health check response.
          content:
            application/json:
              schema:
                properties:
                  description:
                    type: string
                  service_name:
                    type: string
                  status:
                    type: string
      security: []
      tags:
      - Server
  /ping:
    get:
      summary: Check that the API server is running
      responses:
        200:
          description: The server is up and running.
          content:
            text/plain:
              schema:
                type: string
                enum:
                - pong
      security: []
      tags:
      - Server
components:
  securitySchemes:
    api_key:
      name: Authorization
      in: header
      type: apiKey