Tribe Payments Health Check API

The Health Check API from Tribe Payments — 1 operation(s) for health check.

Operations 1

POST /v1/health-check Performs system health check #

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/tribe-payments-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

tribe-payments-health-check-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Tribe Payments Health Check API
  description: ''
  version: 0.0.0
servers:
- url: /
  description: ''
security:
- Bearer: []
- Token: []
tags:
- name: Health Check
paths:
  /v1/health-check:
    parameters: []
    post:
      operationId: postHealthCheckCollection
      tags:
      - Health Check
      responses:
        '200':
          description: Successful response
          content:
            text/plain:
              example: ok
        '400':
          description: Bad request
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/BadRequestErrorResponseDto'
        '401':
          description: Unauthorized
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/UnauthorizedErrorResponseDto'
        '415':
          description: Unsupported media type
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/UnsupportedMediaTypeErrorResponseDto'
        '500':
          description: Internal server error
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/InternalServerErrorResponseDto'
      summary: Performs system health check
      description: Checks the status of the system and network connection as well as validates the received credentials.
      parameters: []
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              type: object
            example:
              anyKey: anyValue
        required: false
      deprecated: false
components:
  schemas:
    InternalServerErrorResponseDto:
      type: object
      properties:
        type:
          type: string
          description: URI reference that identifies the problem type. If not specified, the default value is 'about:blank'.
          example: https://tools.ietf.org/html/rfc2616#section-10
        title:
          type: string
          description: Short human-readable summary of the problem type.
          example: An error occurred
        detail:
          type: string
          description: Human-readable explanation of the specific problem that occurred.
          example: Internal Server Error
      required:
      - type
      - title
      - detail
    UnauthorizedErrorResponseDto:
      type: object
      properties:
        type:
          type: string
          description: URI reference that identifies the problem type. If not specified, the default value is 'about:blank'.
          example: https://tools.ietf.org/html/rfc2616#section-10
        title:
          type: string
          description: Short human-readable summary of the problem type.
          example: An error occurred
        detail:
          type: string
          description: Human-readable explanation of the specific problem that occurred.
          example: Full authentication is required to access this resource.
      required:
      - type
      - title
      - detail
    BadRequestErrorResponseDto:
      type: object
      properties:
        type:
          type: string
          description: URI reference that identifies the problem type. If not specified, the default value is 'about:blank'.
          example: https://tools.ietf.org/html/rfc2616#section-10
        title:
          type: string
          description: Short human-readable summary of the problem type.
          example: An error occurred
        detail:
          type: string
          description: Human-readable explanation of the specific problem that occurred.
          example: Syntax error
      required:
      - type
      - title
      - detail
    UnsupportedMediaTypeErrorResponseDto:
      type: object
      properties:
        type:
          type: string
          description: URI reference that identifies the problem type. If not specified, the default value is 'about:blank'.
          example: https://tools.ietf.org/html/rfc2616#section-10
        title:
          type: string
          description: Short human-readable summary of the problem type.
          example: An error occurred
        detail:
          type: string
          description: Human-readable explanation of the specific problem that occurred.
          example: The content-type "text/plain" is not supported. Supported MIME types are "application/json".
      required:
      - type
      - title
      - detail
  securitySchemes:
    Bearer:
      type: apiKey
      description: Value for the bearer header parameter.
      name: bearer
      in: header
    Token:
      type: apiKey
      description: Value for the X-AUTH-TOKEN header parameter.
      name: X-AUTH-TOKEN
      in: header