- Historical Quotes (Chart)
- Market Data
- Dividend
- Earning & Revenue
- Analysting
- Company
- Financial Statement
- Insider (Executives&Employee)
- Congressman (Senator&Representative)
- 13F institution
- ETF
- News
- Forex
- Commodity
- Stock
- Market Index
- Global Interests
- Schedule Calendar
- IPO
Latest Forexes Price
GET
/forex/latest/{ticker}
Request
Path Params
ticker
string
required
quote currency + base currency ex) USDKRW, JPYUSD
Example:
USDKRW,USDJPY,JPYKRW
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://your-api-server.com/forex/latest/USDKRW,USDJPY,JPYKRW'
Responses
🟢200Success
application/json
Body
object {0}
Example
[
{
"ticker": "USDJPY",
"baseCurrency": "JPY",
"quoteCurrency": "USD",
"price": 147.222,
"change": 0.674,
"changePercentage": 0.46,
"volume": 48941,
"dayLow": 145.84,
"dayHigh": 147.3305,
"yearLow": 140.29,
"yearHigh": 161.942,
"avg50Price": 155.27704,
"avg200Price": 151.32027
},
{
"ticker": "USDKRW",
"baseCurrency": "KRW",
"quoteCurrency": "USD",
"price": 1334.95,
"change": 3.83,
"changePercentage": 0.288,
"volume": 26387,
"dayLow": 1312.81,
"dayHigh": 1335.645,
"yearLow": 1216.96,
"yearHigh": 1399.96,
"avg50Price": 1377.6501,
"avg200Price": 1344.8025
},
{
"ticker": "JPYKRW",
"baseCurrency": "KRW",
"quoteCurrency": "JPY",
"price": 9.06905,
"change": 0.01004633,
"changePercentage": 0.111,
"volume": 346,
"dayLow": 9.038,
"dayHigh": 9.11506,
"yearLow": 8.48633,
"yearHigh": 9.64618,
"avg50Price": 8.88091,
"avg200Price": 8.89168
}
]
Modified at 2024-08-20 07:10:58