FXML - XML Interface to FXP
FXML is a simple, automated way of retrieving currency exchange rates
over the Internet using an XML interface.
Subscribers to this service access the exchange rates via the Internet
using the HTTP protocol to send XML requests and receive XML responses
that contain a list of currencies, dates and the appropriate exchange
rates.
By sending an XML request to FXML with the base (home) and quote currencies,
you can retrieve the latest or historical exchange rates from OANDA's
exchange servers.
A sample from FXML is displayed in the following table:
<RESPONSE>
<EXPR>USD</EXPR>
<EXCH>EUR</EXCH>
<AMOUNT>1</AMOUNT>
<NPRICES>1</NPRICES>
<CONVERSION>
<DATE>Sat, 30 Dec 2000 21:50:03 GMT</DATE>
<ASK>0.9421</ASK>
<BID>0.9416</BID>
</CONVERSION>
</RESPONSE> |
It is possible to create one-to-many currency tables using FXML by providing
the base currency and a series of quote currencies. This will generate
results such as those displayed in the following table:
<RESPONSE>
<EXPR>USD</EXPR>
<EXCH>EUR</EXCH>
<AMOUNT>1</AMOUNT>
<NPRICES>1</NPRICES>
<CONVERSION>
<DATE>Tue, 20 Mar 2001 21:00:00 GMT</DATE>
<ASK>0.9088</ASK>
<BID>0.9082</BID>
</CONVERSION>
<EXPR>USD</EXPR>
<EXCH>CAD</EXCH>
<AMOUNT>1</AMOUNT>
<NPRICES>1</NPRICES>
<CONVERSION>
<DATE>Tue, 20 Mar 2001 21:00:00 GMT</DATE>
<ASK>0.6389</ASK>
<BID>0.6384</BID>
</CONVERSION>
...
</RESPONSE>
|
How to subscribe to FXML
- FXML is available for licensing at $200 USD/month. You can register
for this service online and start using it to obtain currency exchange
data.
- Register to open an account
(if you already have an account, you can use the same login information
to login to FXML)
- Subscribe to the FXML
service online and start obtaining exchange rates today.
If you would like to obtain a redistribution license, please contact
us today to obtain further pricing information.
|