← APIs / Alpha Vantage
Verified

Alpha Vantage

Apiosk Basicsby Apiosk Basics · General

Stocks, forex and crypto: real-time quotes, historical time series, FX rates and technical indicators via the single /query endpoint (pick a function).

financeapi
Price per request
$0.07
About

Alpha Vantage offers free stock, forex and cryptocurrency data plus 50+ technical indicators, all through a single /query endpoint selected by a `function` parameter. This listing proxies it through the Apiosk gateway with pay-per-call billing; the API key is injected by the gateway.

Base URL
https://gateway.apiosk.com/alpha-vantage
Technical Specs
Auth MethodapiKey
Response FormatJSON
Endpoints1
Endpoints
MethodPathDescriptionCost
GET /query 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.
$0.07 default
View details
Endpoint documentation
GET/query
$0.07 default
Description

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%"
  }
}