Documentation Index
Fetch the complete documentation index at: https://apidocs.hopnow.io/llms.txt
Use this file to discover all available pages before exploring further.
Path Parameters
The account’s external ID (starts with acc_)
Request Body
Currency to convert from (e.g., USD, EUR, USDC)
Currency to convert to (e.g., EUR, USD, USDT)
Amount to convert (decimal string, must be positive)
Whether the amount is in source or target currency: source or target
Response
FX quote identifier (starts with fxq_)
Always returns "fx_quote"
Whether the amount is source or target
Source currency amount (decimal)
Target currency amount (decimal)
All-in exchange rate including spread (decimal)
ISO 8601 timestamp when quote expires
ISO 8601 timestamp when quote was executed (null if not yet executed)
ISO 8601 timestamp when created
ISO 8601 timestamp when last updated
Response Example
{
"id": "fxq_1234567890abcdef",
"object": "fx_quote",
"account_id": "acc_1234567890abcdef",
"source_currency": "USD",
"target_currency": "EUR",
"amount_type": "source",
"source_amount": "1000.00",
"target_amount": "855.69",
"all_in_rate": "0.85569",
"expires_at": "2024-01-15T10:05:00Z",
"executed_at": null,
"created": "2024-01-15T10:00:00Z",
"updated": "2024-01-15T10:00:00Z"
}