GET
$0.07 default
/queryDescription
All Alpha Vantage data via a `function` parameter — e.g. GLOBAL_QUOTE (latest price), TIME_SERIES_DAILY, CURRENCY_EXCHANGE_RATE, DIGITAL_CURRENCY_DAILY, and indicators like RSI/MACD. The other parameters depend on the chosen function.
Pricing
$0.07 default
Parameters
{
"from_currency": {
"description": "Source currency (for CURRENCY_EXCHANGE_RATE).",
"example": "USD",
"required": false,
"type": "string"
},
"function": {
"description": "Alpha Vantage function to call.",
"example": "GLOBAL_QUOTE",
"required": true,
"type": "string"
},
"symbol": {
"description": "Ticker symbol (for equity functions).",
"example": "IBM",
"required": false,
"type": "string"
},
"to_currency": {
"description": "Target currency (for CURRENCY_EXCHANGE_RATE).",
"example": "EUR",
"required": false,
"type": "string"
}
}Response schema
{
"description": "Shape depends on the chosen function. Example shown for GLOBAL_QUOTE: a 'Global Quote' object with symbol, open, high, low, price, volume, latest trading day, previous close and change fields (all strings).",
"type": "object"
}Example response
{
"Global Quote": {
"01. symbol": "IBM",
"02. open": "279.66",
"03. high": "294.49",
"04. low": "278.96",
"05. price": "286.25",
"06. volume": "6905811",
"07. latest trading day": "2026-07-01",
"08. previous close": "281.21",
"09. change": "5.04",
"10. change percent": "1.7923%"
}
}