Stock
Get Stock Prices
GET /api/public/v1/stock/prices/{symbol}Path Parameters
Parameter
Type
Description
Query Parameters
Parameter
Type
Description
Example Request
curl -X GET "https://api.alpha-lenz.com/api/public/v1/stock/prices/005930?interval=1day&limit=30" \
-H "X-API-Key: ak_your_key"Response
{
"symbol": "005930",
"company_name": "Samsung Electronics",
"interval": "1day",
"data": [
{
"datetime": "2024-01-15T00:00:00",
"open": 71500.0,
"high": 72000.0,
"low": 71000.0,
"close": 71800.0,
"volume": 15000000
},
{
"datetime": "2024-01-16T00:00:00",
"open": 71800.0,
"high": 72500.0,
"low": 71500.0,
"close": 72200.0,
"volume": 12500000
}
],
"count": 30
}Get Stock Price History
Path Parameters
Parameter
Type
Description
Query Parameters
Parameter
Type
Description
Example Request
Response
OHLCV Fields
Field
Type
Description
Pagination
Last updated