VoPay Ping Endpoints API

The Ping Endpoints API from VoPay — 3 operation(s) for ping endpoints.

Operations 3

POST /ping ping #
POST /auth/ping auth/ping #
POST /partner/auth/ping partner/auth/ping #

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/vopay-ping-endpoints-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

vopay-ping-endpoints-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: '2.0'
  title: Ping Endpoints API
  description: The Ping API allows you to validate the connectivity between your application and the VoPay platform.
  contact:
    name: API Support
    email: help@vopay.com
servers:
- url: https://earthnode-dev.vopay.com/api/v2
tags:
- name: Ping Endpoints
paths:
  /ping:
    post:
      description: This endpoint allows you to validate the connectivity between your application and the VoPay platform.
      summary: ping
      tags:
      - Ping Endpoints
      operationId: PingPost
      deprecated: false
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                type: object
                properties:
                  Success:
                    type: boolean
                    description: True if the request was successful, false if it failed
                    example: 'true'
                  ErrorMessage:
                    type: string
                    description: Contains a description of the error if the request failed
                    example: ''
  /auth/ping:
    post:
      description: This endpoint allows you to ping our server and validate your credentials on VoPay platform.
      summary: auth/ping
      tags:
      - Ping Endpoints
      operationId: AuthPingPost
      deprecated: false
      requestBody:
        $ref: '#/components/requestBodies/AuthPingPost'
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                type: object
                properties:
                  Success:
                    type: boolean
                    description: True if the request was successful, false if it failed
                    example: 'true'
                  ErrorMessage:
                    type: string
                    description: Contains a description of the error if the request failed
                    example: ''
  /partner/auth/ping:
    post:
      description: This endpoint allows you to ping our server and validate your partner credentials on VoPay platform.
      summary: partner/auth/ping
      tags:
      - Ping Endpoints
      operationId: PartnerAuthPingPost
      deprecated: false
      requestBody:
        $ref: '#/components/requestBodies/AuthPingPost'
      responses:
        '200':
          description: ''
          headers: {}
          content:
            application/json:
              schema:
                type: object
                properties:
                  Success:
                    type: boolean
                    description: True if the request was successful, false if it failed
                    example: 'true'
                  ErrorMessage:
                    type: string
                    description: Contains a description of the error if the request failed
                    example: ''
components:
  requestBodies:
    AuthPingPost:
      content:
        application/x-www-form-urlencoded:
          schema:
            type: object
            properties:
              AccountID:
                description: Your account ID
                type: string
              Key:
                description: API key for the account
                type: string
              Signature:
                description: Hashed signature for the request
                type: string
            required:
            - AccountID
            - Key
            - Signature
      required: true