Helcim General API

The General API from Helcim — 1 operation(s) for general.

Operations 1

GET /connection-test Tests connectivity to the Helcim API #

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/helcim-general-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

helcim-general-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: This API covers publicly accessible merchant actions
  version: 2.2.0
  title: Helcim General API
servers:
- url: https://api.helcim.com/v2
- url: https://api.helcim.test/v2
tags:
- name: General
paths:
  /connection-test:
    get:
      tags:
      - General
      summary: Tests connectivity to the Helcim API
      operationId: connectionTest
      responses:
        '200':
          description: Successful
          content:
            application/json:
              schema:
                title: Successful Connection Test
                example:
                  message: Connection Successful
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                title: Invalid Business ID
                example:
                  errors: invalid businessId
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                title: No credentials included
                description: No API token was included in the request
        '403':
          description: Unauthorized
          content:
            application/json:
              schema:
                title: Forbidden
                description: Invalid API token was included in the request
      security:
      - ApiAccessAuth: []
components:
  securitySchemes:
    ApiAccessAuth:
      description: API Token with required permissions
      type: apiKey
      in: header
      name: api-token