Skip to main content
GET
https://apis.hopnow.io
/
v1
/
accounts
/
{account_id}
/
fx
/
quotes
/
{quote_id}
Get FX Quote
curl --request GET \
  --url https://apis.hopnow.io/v1/accounts/{account_id}/fx/quotes/{quote_id} \
  --header 'Authorization: Bearer <token>'

Path Parameters

account_id
string
required
The account’s external ID (starts with acc_)
quote_id
string
required
The FX quote’s external ID (starts with quote_)

Response

Returns the same structure as Create FX Quote response.

Response Example

{
  "id": "quote_1234567890abcdef",
  "object": "fx_quote",
  "account_id": "acc_1234567890abcdef",
  "base_currency": "USD",
  "quote_currency": "EUR",
  "side": "BUY",
  "base_amount": "1000.00",
  "quote_amount": "850.00",
  "all_in_rate": "0.8500",
  "spread_bps": 50,
  "inside_rate": "0.8495",
  "expires_at": "2024-01-15T10:05:00Z",
  "executed_at": null,
  "created": "2024-01-15T10:00:00Z",
  "updated": "2024-01-15T10:00:00Z"
}