Valley LogoBETA
Stocks APIStock Intraday

Stock Intraday

Returns intraday tick data for the current trading day minute-by-minute bid price, ask price, and last trade price.

Request

bash
1curl -X GET "https://api.usevalley.xyz/v1/stocks/MTNGH/ticks" \
2  -H "X-API-Key: live_your_key_here"

Path parameters

ParameterDescription
symbolGSE ticker symbol

Response

json
1{
2  "data": [
3    {
4      "timestamp": "2026-03-03T09:30:00Z",
5      "last_trade_price": 2.05,
6      "bid_price": 2.04,
7      "ask_price": 2.06,
8      "volume": 12500
9    },
10    {
11      "timestamp": "2026-03-03T09:31:00Z",
12      "last_trade_price": 2.07,
13      "bid_price": 2.06,
14      "ask_price": 2.08,
15      "volume": 8200
16    }
17  ],
18  "meta": {
19    "timestamp": "2026-03-03T11:22:22Z",
20    "version": "1.0",
21    "exchange": "GSE"
22  }
23}

Notes

  • Returns data for the current trading day only. The array will be empty before market open and after the session closes with no ticks recorded.
  • GSE trading hours are 09:30–15:00 GMT on business days.
  • Ticks are sourced from MarketTick records captured by the GSE data scraper.