Currency Info Graph
Description: Displays currency exchange rates, historical data, and conversion tools for different currencies.
API Response Structure:
{
"price": "1 USD = 0.85 EUR",
"currency": "US Dollar to Euro",
"date": "2023-07-15",
"priceMovement": {
"price": "+0.002",
"percentage": "0.24%",
"date": "Past day",
"movement": "up"
},
"hasGraph": true,
"currencyConverter": {
"from": {
"price": 1,
"currency": "USD"
},
"to": {
"price": 0.85,
"currency": "EUR"
}
},
"moreInfo": {
"title": "More about USD to EUR",
"link": {
"url": "https://www.google.com/finance/converter",
"htmlJump": false
}
},
"type": "instantAnswers",
"configType": "currencyInfoGraph"
}
Fields:
-
price
(string): Current exchange rate -
currency
(string): Currency pair description -
date
(string): Date of the exchange rate -
priceMovement
(object): Recent price changes-
price
(string): Absolute change -
percentage
(string): Percentage change -
date
(string): Time period -
movement
(string): Direction ("up" or "down")
-
-
hasGraph
(boolean): Indicates if historical graph is available -
currencyConverter
(object): Currency conversion tool-
from
(object): Source currency information -
to
(object): Target currency information
-
-
moreInfo
(object): Additional information links -
type
(string): Always "instantAnswers" -
configType
(string): Always "currencyInfoGraph"