Alpha Vantage · Schema
ExchangeRate
Real-time currency exchange rate between two currencies
FintechMarket DataStocksFXCryptoCommoditiesEconomic IndicatorsTechnical IndicatorsFundamentalsNewsSentimentFree
Properties
| Name | Type | Description |
|---|---|---|
| fromCurrencyCode | string | Source currency ISO code |
| fromCurrencyName | string | Source currency full name |
| toCurrencyCode | string | Destination currency ISO code |
| toCurrencyName | string | Destination currency full name |
| exchangeRate | string | Current exchange rate |
| lastRefreshed | string | Timestamp of last data refresh |
| timeZone | string | Time zone of the refresh timestamp |
| bidPrice | string | Current bid price |
| askPrice | string | Current ask price |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://www.alphavantage.co/schemas/alpha-vantage-exchange_rate-schema.json",
"title": "ExchangeRate",
"type": "object",
"description": "Real-time currency exchange rate between two currencies",
"properties": {
"fromCurrencyCode": {
"type": "string",
"description": "Source currency ISO code"
},
"fromCurrencyName": {
"type": "string",
"description": "Source currency full name"
},
"toCurrencyCode": {
"type": "string",
"description": "Destination currency ISO code"
},
"toCurrencyName": {
"type": "string",
"description": "Destination currency full name"
},
"exchangeRate": {
"type": "string",
"description": "Current exchange rate"
},
"lastRefreshed": {
"type": "string",
"description": "Timestamp of last data refresh"
},
"timeZone": {
"type": "string",
"description": "Time zone of the refresh timestamp"
},
"bidPrice": {
"type": "string",
"description": "Current bid price"
},
"askPrice": {
"type": "string",
"description": "Current ask price"
}
}
}