Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Online Money Transfer Rates API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fonlinemoneytransfer.co.uk%2Fonlinemoneytransfer" | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fonlinemoneytransfer.co.uk%2Fonlinemoneytransfer" | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Online Money Transfer Rates API.
List the supported remittance corridors and their country pairs
Read the exchange rate for a specific corridor route
Export the rates for a route as CSV for bulk use
Compare rates across corridors for a send amount
Poll rates over time to monitor how they move
GET STARTED
Patterns agents use Online Money Transfer Rates API for, with concrete tasks.
★ Corridor Rate Comparison
A comparison site reads GET /api/v1/corridors to learn which country pairs are covered, then reads GET /api/v1/rates/{route} for each to show the best value. This lets a sender see, at a glance, which corridor offers the most receive currency for their amount.
List the corridors, read the rate for each relevant route, and report the best value for a GBP to INR transfer
Rate Monitoring
A monitoring agent polls GET /api/v1/rates/{route} on a schedule and records how a corridor's rate moves. This drives alerts when a rate crosses a threshold, so a user can be told when it is a good time to send.
Poll the GBP to NGN corridor rate and alert when it improves past a set threshold
Bulk Rate Export
For analysis or reporting, an agent pulls GET /api/v1/rates/{route}/csv to get a corridor's rates in CSV form. This feeds spreadsheets or data pipelines without scraping a web page.
Download the CSV of rates for a route and load it into a reporting spreadsheet
5 endpoints — the online money transfer rates api lists remittance corridors and the exchange rates offered across them, so a sending amount can be compared before a transfer is made.
METHOD
PATH
DESCRIPTION
/api/v1/corridors
List the supported remittance corridors
/api/v1/rates/{route}
Get the exchange rate for a corridor route
/api/v1/rates/{route}/csv
Export the rates for a route as CSV
/api/v1/corridors
List the supported remittance corridors
/api/v1/rates/{route}
Get the exchange rate for a corridor route
/api/v1/rates/{route}/csv
Export the rates for a route as CSV
What agents get from Jentic-routed access to this vendor.
Setup
Calling the Online Money Transfer Rates API by hand means formatting each corridors and rates request and handling errors against the endpoints yourself. Through Jentic you install once, import the API from the API Directory, and your agent reads corridors and rates. No key is required.
Permission scoping
The API exposes read operations for corridors and rates, so scope by operation: allow an agent to list corridors and read rates while leaving the CSV export out of the allowed set until you add it.
Credential isolation
Online Money Transfer needs no API key, so there is no secret for Jentic to hold. Your own Jentic One instance still runs the calls, keeping execution on infrastructure you control.
Intent-based discovery
Agents search Jentic by intent such as 'compare remittance rates' or 'get a corridor exchange rate', and Jentic returns the matching Online Money Transfer operation with its input schema so the agent calls the right endpoint.
Alternatives and complements available in the Jentic catalogue.
Specific to using Online Money Transfer Rates API through Jentic.
What does the Online Money Transfer Rates API do?
It lists the remittance corridors that are covered and returns the exchange rate for each route, including a CSV export. This lets an agent compare cross-border transfer rates and monitor how they move over time.
What authentication does the Online Money Transfer Rates API use?
The specification declares no authentication, and the endpoints are public reads. An agent can call the corridors and rates operations without a key or token.
How do I compare rates across corridors?
Read GET /api/v1/corridors to list the covered country pairs, then read GET /api/v1/rates/{route} for each route you care about and compare the results for a given send amount.
Can I export the rates in bulk?
Yes. GET /api/v1/rates/{route}/csv returns a route's rates as CSV, which loads directly into a spreadsheet or a data pipeline without scraping a page.
What are the rate limits for the Online Money Transfer Rates API?
The OpenAPI specification does not declare rate limits. Poll on a sensible schedule and cache results rather than hammering the endpoints, and back off if a request returns an error response.
Do I need an MCP server to use the Online Money Transfer Rates API with an agent?
You do not. Jentic connects the API to your agent directly from the API Directory: import it and the agent calls the corridor and rates operations, with no key required.
Can I limit what my agent is allowed to do with the Online Money Transfer Rates API?
Yes. Because you run Jentic One yourself, you choose the allowed operations: an agent can be permitted to list corridors and read rates while the CSV export stays excluded, and every call still runs from your own instance.
For Agents
List remittance corridors and read the exchange rates for each route from Online Money Transfer, including a CSV export of rates.
Use for: I need the list of supported money-transfer corridors, Get the current exchange rate for a corridor route, Compare remittance rates across corridors, Download the rates for a route as CSV
Not supported: Does not initiate transfers, hold funds, or handle KYC. Use it to list remittance corridors and read their exchange rates, including CSV export, only.
The Online Money Transfer Rates API lists remittance corridors and the exchange rates offered across them, so a sending amount can be compared before a transfer is made. The corridors endpoint enumerates the send and receive country pairs that are covered, and the rates endpoints return the rate for a given route, with a CSV variant for bulk export. Because the endpoints are public reads, they are straightforward to poll for rate monitoring or comparison displays. Fintech and comparison-site builders use it to show which corridor and provider give the best value for a cross-border payment.