For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Support Center
OverviewAPIResources
OverviewAPIResources
  • REST API Endpoints
      • GETContract Dependents
      • GETContract Find
      • GETContract Group Find
      • GETContract Group Item
      • GETContract Group Items
      • GETContract Group List
      • GETContract Group Suggest
      • GETContract Item
      • GETContract Items
      • GETContract L Dependents
      • GETContract Maturity Dependents
      • GETContract Maturity Item
      • GETContract Maturity Items
      • GETContract Maturity L Dependents
      • GETContract Suggest
      • GETCurrency Find
      • GETCurrency Item
      • GETCurrency Items
      • GETCurrency List
      • GETCurrency Rate Dependents
      • GETCurrency Rate Item
      • GETCurrency Rate Items
      • GETCurrency Rate L Dependents
      • GETCurrency Rate List
      • GETCurrency Suggest
      • GETExchange Find
      • GETExchange Item
      • GETExchange Items
      • GETExchange List
      • GETExchange Suggest
      • POSTGet Product Fee Params
      • GETProduct Dependents
      • GETProduct Find
      • GETProduct Item
      • GETProduct Items
      • GETProduct L Dependents
      • GETProduct List
      • GETProduct Session Dependents
      • GETProduct Session Item
      • GETProduct Session Items
      • GETProduct Session L Dependents
      • GETProduct Suggest
      • POSTRoll Contract
      • POSTRoll Contracts
      • GETSpread Definition Item
      • GETSpread Definition Items
Support Center
LogoLogo
REST API EndpointsContract Library

Currency Rate List

GET
https://demo.tradovateapi.com/v1/currencyRate/list
GET
/v1/currencyRate/list
1const url = 'https://demo.tradovateapi.com/v1/currencyRate/list';
2const options = {
3 method: 'GET',
4 headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
5 body: '{}'
6};
7
8try {
9 const response = await fetch(url, options);
10 const data = await response.json();
11 console.log(data);
12} catch (error) {
13 console.error(error);
14}
200Retrieved
1[
2 {
3 "timestamp": "2024-04-25T14:00:00Z",
4 "rate": 1.2345,
5 "id": 101
6 },
7 {
8 "timestamp": "2024-04-25T14:05:00Z",
9 "rate": 0.9876,
10 "id": 102
11 },
12 {
13 "timestamp": "2024-04-25T14:10:00Z",
14 "rate": 1.005,
15 "id": 103
16 }
17]
Fetches all CurrencyRate entities
Was this page helpful?
Previous

Currency Suggest

Next
Built with

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Response

CurrencyRate
timestampdatetime
ratedouble
idlong