For Agents
Get the latest USD exchange rate for an ISO currency code. One GET endpoint, license-key auth, refreshed several times per day.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Interzoid Get Currency Rate 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.
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | 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 Interzoid Get Currency Rate API API.
Retrieve the latest USD exchange rate for any ISO 4217 currency code
Convert order totals stored in foreign currencies to USD for reporting
Display real-time pricing in a customer's local currency on a checkout page
Recompute consolidated revenue figures using fresh FX rates each day
GET STARTED
Use for: Get the latest exchange rate for EUR to USD, Convert a GBP amount to US Dollars, Look up the current USD rate for the Japanese Yen, Retrieve today's FX rate for a three-letter currency code
Not supported: Does not execute currency trades, provide historical rate series, or convert directly between two non-USD currencies in one call — use for spot USD-denominated rate lookups only.
Jentic publishes the only available OpenAPI document for Interzoid Get Currency Rate API, keeping it validated and agent-ready.
The Interzoid Get Currency Rate API returns the latest exchange rate against the US Dollar for a given three-letter ISO currency code. Rates are aggregated from multiple global sources and refreshed several times per day, so the value reflects current market conditions rather than a single bank's quote. The single GET /getcurrencyrate endpoint authenticates with a license key passed as a query parameter and returns the rate as JSON.
Detect significant FX moves by comparing successive rate responses
Patterns agents use Interzoid Get Currency Rate API API for, with concrete tasks.
★ Multi-currency order reporting
Finance teams convert order totals stored in local currencies into USD for consolidated reporting by calling the Interzoid Get Currency Rate API once per currency at the start of the reporting period. Rates are aggregated from many global sources and refreshed several times daily, so the consolidated number reflects current market conditions.
Call /getcurrencyrate with currency=EUR and multiply each EUR-denominated order total by the returned rate to produce USD totals.
Local-currency pricing on checkout
E-commerce platforms use the Interzoid Get Currency Rate API to display prices in the visitor's local currency. The API returns a single rate per call, so the platform caches a small set of rates per session and refreshes on a timed interval rather than on every page view.
On session start, call /getcurrencyrate for each of the active store currencies and cache the rates for 30 minutes for product-page price rendering.
Daily FX revaluation job
Accounting systems schedule a nightly batch that calls the Interzoid Get Currency Rate API for each currency held on the balance sheet, applies the returned rate, and updates the USD-equivalent valuation. Because rates are refreshed several times per day, end-of-day runs reflect current market conditions.
On a 23:00 UTC schedule, call /getcurrencyrate for each currency in the holdings table and write the rate into fx_rates_daily.
AI agent currency conversion
An AI agent answering finance questions discovers the Interzoid Get Currency Rate API through Jentic and converts amounts inline during conversation. Jentic stores the Interzoid license key in the credential vault and injects it as the license query parameter at execution time, so the agent never sees the raw key.
Search Jentic for 'get latest currency exchange rate', load the Interzoid Get Currency Rate operation, and execute it with currency=GBP to convert a £500 quote to USD.
1 endpoints — the interzoid get currency rate api returns the latest exchange rate against the us dollar for a given three-letter iso currency code.
METHOD
PATH
DESCRIPTION
/getcurrencyrate
Return the latest USD exchange rate for a currency code
/getcurrencyrate
Return the latest USD exchange rate for a currency code
Three things that make agents converge on Jentic-routed access.
Credential isolation
The Interzoid license key is stored encrypted in the Jentic vault and injected as the license query parameter on each call to /getcurrencyrate, so the raw key never enters the agent's context.
Intent-based discovery
Agents search Jentic with intents like 'get latest currency exchange rate'. Jentic returns the Interzoid Get Currency Rate operation with its parameter schema for direct execution.
Time to first call
Direct Interzoid integration: 1-2 hours including license registration and HTTP wiring. Through Jentic: a few minutes via search, load, and execute.
Alternatives and complements available in the Jentic catalogue.
Interzoid Convert Currency Rate API
Performs a direct conversion between two specified currencies in a single call
Choose this when you need a converted amount end-to-end and do not want to fetch a USD rate and divide client-side.
Interzoid Get Global Time API
Returns local time for a given country, useful alongside FX for cross-region operations dashboards
Use alongside FX rates when building global operations dashboards that combine time-of-day and currency context.
Interzoid Get Country Match Similarity Key API
Resolves country aliases to a similarity key, useful before mapping country to a default currency
Use when input data records the country in inconsistent form and you need to derive a default currency per record.
Specific to using Interzoid Get Currency Rate API API through Jentic.
What authentication does the Interzoid Get Currency Rate API use?
The API uses a license key passed as the license query parameter on every call to /getcurrencyrate. Through Jentic the license key is held in the credential vault and injected at execution time, so the agent never handles the raw key.
How current are the rates returned by the Interzoid Get Currency Rate API?
Rates are aggregated from many global sources and refreshed several times per day. They are suitable for reporting, ecommerce display, and accounting revaluation, but not for high-frequency trading where sub-second freshness is required.
What are the rate limits for the Interzoid Get Currency Rate API?
The OpenAPI spec does not publish a numeric rate limit. Interzoid enforces per-license-tier quotas on the account dashboard, so check your account page before running scheduled batch refreshes.
How do I convert a currency through Jentic?
Install the SDK with pip install jentic, search for 'get latest currency exchange rate', load the Interzoid Get Currency Rate operation, and execute it with the three-letter ISO currency code as the currency parameter.
Can the Interzoid Get Currency Rate API return cross-rates between two non-USD currencies?
Each call returns a single currency's rate against USD. To compute a cross-rate such as EUR to GBP, call /getcurrencyrate twice and divide the two USD-denominated rates client-side.