For Agents
Convert an amount from one currency to another at the current FX rate via a single Interzoid GET call.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Interzoid Convert 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 Convert Currency Rate API API.
Convert a numeric amount from a source currency code to a target currency code at the live rate
Return the rate used in the conversion alongside the converted amount for audit
Surface remaining licence credits in every response for budget tracking
Authenticate with an Interzoid licence key passed as a query parameter
GET STARTED
Use for: I need to convert 100 USD to EUR at today's rate, Convert 5,000 GBP into NGN for a vendor invoice, Get the EUR-to-USD rate Interzoid is currently using, Convert an order total from JPY to USD before invoicing
Not supported: Does not handle historical FX rates, currency forecasting, money movement, or trade execution — use for current-rate amount conversion between two currencies only.
Jentic publishes the only available OpenAPI document for Interzoid Convert Currency Rate API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for the Interzoid Convert Currency Rate API, keeping it validated and agent-ready. The single GET endpoint converts an amount from one currency into another at the current foreign-exchange rate, returning the converted amount, the rate applied, and the remaining licence credits. Authentication is an Interzoid licence key passed as the 'license' query parameter alongside the source currency, target currency, and amount.
Patterns agents use Interzoid Convert Currency Rate API API for, with concrete tasks.
★ Multi-Currency Invoice Generation
Finance teams generating invoices for international customers convert the home-currency price into the customer's local currency at issue time using GET /convertcurrency. The response includes the rate used so the invoice can document the exchange explicitly. The single-endpoint surface keeps the integration small enough for an embedded billing module.
Convert 1,250.00 USD to EUR via GET /convertcurrency and return the converted amount and rate used
E-Commerce Storefront Localisation
Online stores display prices in the visitor's local currency by converting from a base currency at page-render time. The Interzoid endpoint returns the converted amount and the applied rate so the store can show a 'rate as of...' note. Caching the rate per currency pair on a short TTL keeps API usage low.
For each visitor session, convert the catalog's USD prices into the visitor's locale currency once per hour and cache the rate
Treasury Pre-Trade Quote
A treasury function checks Interzoid's converted rate as one input among several before executing a real currency trade. The endpoint provides a quick read of the prevailing rate without the overhead of a market-data subscription. Combining the Interzoid quote with the executed broker rate creates a simple slippage audit.
Convert 100,000 EUR to USD via GET /convertcurrency, log the rate and timestamp, and pass to the trading desk
Agent-Driven Expense Conversion
An AI expense-report agent converts non-home-currency receipts into the corporate base currency at submission time using Interzoid. Jentic stores the licence key in MAXsystem and injects it as the query parameter so the agent never sees the raw key. Expense reports that previously required a manual lookup against an FX site now finalise in one step.
Given a receipt of 8,500 JPY, call /convertcurrency to convert to USD and store the converted amount with the rate used
1 endpoints — jentic publishes the only available openapi specification for the interzoid convert currency rate api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/convertcurrency
Convert an amount from a source currency to a target currency at the current rate
/convertcurrency
Convert an amount from a source currency to a target currency at the current rate
Three things that make agents converge on Jentic-routed access.
Credential isolation
The Interzoid licence key is stored encrypted in the Jentic MAXsystem vault and injected as the 'license' query parameter at execution time. The agent never sees the raw licence key.
Intent-based discovery
Agents search Jentic by intent (e.g., 'convert 100 USD to EUR') and Jentic returns the GET /convertcurrency operation with its currency and amount query parameters.
Time to first call
Direct Interzoid integration: under an hour for a single endpoint plus credit management. Through Jentic: a few minutes once the licence key is vaulted.
Alternatives and complements available in the Jentic catalogue.
Interzoid Get Currency Rate API
Returns the raw FX rate without performing a conversion, where this API does both
Use the get-currency-rate API when you only need the rate to apply elsewhere; use this convert API when you want the converted amount returned in one call.
ExchangeRate-API
Dedicated FX-rate API with multi-pair tables versus Interzoid's single-conversion endpoint
Choose ExchangeRate-API when you need bulk multi-pair rate tables; choose Interzoid when a single converted amount per call is sufficient.
CurrencyBeacon API
FX-rate API with historical data versus Interzoid's current-rate conversion
Choose CurrencyBeacon when historical rates are required; choose Interzoid for current-rate conversions in transactional flows.
Specific to using Interzoid Convert Currency Rate API API through Jentic.
Why is there no official OpenAPI spec for the Interzoid Convert Currency Rate API?
Interzoid does not publish OpenAPI specifications for its endpoints. Jentic generates and maintains this spec so that AI agents and developers can call the Interzoid Convert Currency Rate API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the Interzoid Convert Currency Rate API use?
Authentication is a licence key passed as the 'license' query parameter on GET /convertcurrency. Register at www.interzoid.com/register to obtain a key. Through Jentic, the key is stored in the MAXsystem vault and injected at execution time so it never enters the agent's prompt.
What does the response include?
The response returns the converted amount, the FX rate used in the conversion, a result code, and a 'Credits' field showing the remaining balance on the licence. The rate field is what makes the call auditable for finance and accounting use cases.
What are the rate limits for the Interzoid Convert Currency Rate API?
Interzoid runs on a credit-per-call model rather than a hard rate limit. Each successful response includes a 'Credits' field, and HTTP 402 is returned when credits are exhausted. Higher tiers carry larger credit pools.
How do I convert a currency through Jentic?
Search Jentic for 'convert a currency'. The SDK returns the GET /convertcurrency operation with source-currency, target-currency, and amount query parameters. Run pip install jentic, await client.search('convert a currency'), then await client.execute(...) with the inputs.
How fresh are the FX rates returned by the API?
Interzoid sources current foreign-exchange rates and updates them throughout the day. The exact refresh cadence is not declared in the spec; for high-frequency or trade-execution use cases prefer a dedicated market-data feed and use Interzoid for general-purpose conversion in finance and ecommerce flows.