VoPay Payments API

The Payments API from VoPay — 1 operation(s) for payments.

Operations 1

POST /v3/payment payment

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-payments-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-payments-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: '3.0'
  title: Payments API
  description: Payment endpoint accepting nested JSON payloads with rail-specific params.
  contact:
    email: help@vopay.com
servers:
- url: https://earthnode-dev.vopay.com/api
tags:
- name: Payments
paths:
  /v3/payment:
    post:
      summary: payment
      description: Create a payment. Common top-level fields plus nested DebitorInformation, CreditorInformation and RailSpecificInfo objects.
      tags:
      - Payments
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - AccountID
              - Key
              - Signature
              - PaymentRail
              - Amount
              - Currency
              properties:
                AccountID:
                  type: string
                  example: '{{AccountID}}'
                Key:
                  type: string
                  example: '{{Key}}'
                Signature:
                  type: string
                  example: '{{Signature}}'
                PaymentRail:
                  type: string
                  example: sepainstant
                  description: Identifier of the rail to use (e.g. sepainstant, ach, eft)
                Amount:
                  type: string
                  example: '100'
                Currency:
                  type: string
                  example: EUR
                Notes:
                  type: string
                  example: Test SEPA Instant Transaction
                DebitorInformation:
                  type: object
                  properties:
                    Name:
                      type: string
                      example: Tim
                    AddressInfo:
                      type: object
                      description: Optional address object
                    VirtualAccountID:
                      type: integer
                      example: 1
                CreditorInformation:
                  type: object
                  properties:
                    Name:
                      type: string
                      example: Timmy Spears
                RailSpecificInfo:
                  description: Rail-specific parameters. Use `PaymentRail` to determine which schema applies.
                  oneOf:
                  - $ref: '#/components/schemas/Rail_SEPAInstant'
                  - $ref: '#/components/schemas/Rail_EFT'
                  - $ref: '#/components/schemas/Rail_Default'
      responses:
        '200':
          description: Payment created (or validation errors returned)
          content:
            application/json:
              schema:
                type: object
                properties:
                  Success:
                    type: boolean
                    example: true
                  ErrorMessage:
                    type: string
                    example: ''
                  TransactionID:
                    type: string
                    example: '3571926'
                  Status:
                    type: string
                    example: pending
                    enum:
                    - pending confirmation
                    - in progress
                    - blocked by financial institution
                    - pending approval
                    - received
                    - complete
                    - declined
                    - waiting
                    - settled
                    - cancellation requested
                    - cancelled
                    - failed
                    - successful
                    - sent
                    - requested
                    - pending
              example:
                Success: true
                ErrorMessage: ''
                TransactionID: '3571926'
                Status: pending
components:
  schemas:
    Rail_Default:
      type: object
      description: Default empty rail-specific object
      properties: {}
    Rail_SEPAInstant:
      type: object
      properties:
        CreditorIBAN:
          type: string
          example: IE29AIBK93115212345678
        RemittanceInformation:
          type: string
      required:
      - CreditorIBAN
    Rail_EFT:
      type: object
      properties:
        BeneficiaryAccountNumber:
          type: string
        BeneficiarySortCode:
          type: string