VoPay Watchlist Endpoints API

The Watchlist Endpoints API from VoPay — 4 operation(s) for watchlist endpoints.

Operations 4

GET /gcm/watchlist gcm/watchlist #
GET /gcm/watchlist/rates gcm/watchlist/rates #
POST /gcm/watchlist/add gcm/watchlist/add #
POST /gcm/watchlist/delete gcm/watchlist/delete #

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-watchlist-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-watchlist-endpoints-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: '2.0'
  title: Global Cash Management Watchlist Endpoints API
  description: The Global Cash Management API allows you to manage your recipient contacts, delivery channels, and delivery methods.
  contact:
    name: API Support
    email: help@vopay.com
servers:
- url: https://earthnode-dev.vopay.com/api/v2
tags:
- name: Watchlist Endpoints
paths:
  /gcm/watchlist:
    get:
      description: Get a list of all the watchlisted corridors for a certain client account.
      summary: gcm/watchlist
      tags:
      - Watchlist Endpoints
      operationId: GetWatchlistGET
      deprecated: false
      parameters:
      - name: AccountID
        in: query
        required: true
        description: Your account ID
        schema:
          type: string
      - name: Key
        in: query
        required: true
        description: API key for the account
        schema:
          type: string
      - name: Signature
        in: query
        required: true
        description: Hashed signature for the request
        schema:
          type: string
      - name: ClientAccountID
        in: query
        required: false
        description: The client account ID
        schema:
          type: string
      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: Error message if any
                    example: ''
                  Watchlist:
                    type: object
                    description: The watchlisted corridors
                    properties:
                      '0':
                        type: object
                        properties:
                          Currency:
                            type: string
                            description: The currency
                            example: Australian Dollar
                          ShortForm:
                            type: string
                            description: The currency short form
                            example: AUD
                          FxRate:
                            type: string
                            description: The foreign exchange rate
                            example: '1.0839700000'
  /gcm/watchlist/rates:
    get:
      description: Get a list of fx rates for a wacthlisted currency.
      summary: gcm/watchlist/rates
      tags:
      - Watchlist Endpoints
      operationId: GetWatchlistRatesGET
      deprecated: false
      parameters:
      - name: AccountID
        in: query
        required: true
        description: Your account ID
        schema:
          type: string
      - name: Key
        in: query
        required: true
        description: API key for the account
        schema:
          type: string
      - name: Signature
        in: query
        required: true
        description: Hashed signature for the request
        schema:
          type: string
      - name: Currency
        in: query
        required: false
        description: The currency you want to get rates for
        schema:
          type: string
      - name: LookBack
        in: query
        required: false
        description: 'The lookback period, valid values are: day, week, month, year. Default is day'
        schema:
          type: string
      - name: Processor
        in: query
        required: false
        description: The processor
        schema:
          type: string
      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: Error message if any
                    example: ''
                  FxRates:
                    type: object
                    description: The list of fx rates
                    properties:
                      '0':
                        type: object
                        properties:
                          FxRate:
                            type: string
                            description: The foreign exchange rate
                            example: '1.0839700000'
                          DateAdded:
                            type: string
                            description: The date the rate was added
                            example: '2024-08-13 21:57:28'
  /gcm/watchlist/add:
    post:
      description: Add a new watchlisted corridor for a certain client account.
      summary: gcm/watchlist/add
      tags:
      - Watchlist Endpoints
      operationId: AddWatchlistPOST
      deprecated: false
      parameters:
      - name: AccountID
        in: query
        required: true
        description: Your account ID
        schema:
          type: string
      - name: Key
        in: query
        required: true
        description: API key for the account
        schema:
          type: string
      - name: Signature
        in: query
        required: true
        description: Hashed signature for the request
        schema:
          type: string
      - name: Currency
        in: query
        required: true
        description: The currency abbreviation
        schema:
          type: string
      - name: ClientAccountID
        in: query
        required: false
        description: The client account ID
        schema:
          type: string
      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: Error message if any
                    example: ''
  /gcm/watchlist/delete:
    post:
      description: Delete a watchlisted corridor for a certain client account.
      summary: gcm/watchlist/delete
      tags:
      - Watchlist Endpoints
      operationId: DeleteWatchlistPOST
      deprecated: false
      parameters:
      - name: AccountID
        in: query
        required: true
        description: Your account ID
        schema:
          type: string
      - name: Key
        in: query
        required: true
        description: API key for the account
        schema:
          type: string
      - name: Signature
        in: query
        required: true
        description: Hashed signature for the request
        schema:
          type: string
      - name: Currency
        in: query
        required: true
        description: The Currency you want to delete
        schema:
          type: string
      - name: ClientAccountID
        in: query
        required: false
        description: The client account ID
        schema:
          type: string
      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: Error message if any
                    example: ''