Quotes & History
Real-time quote
GET /api/v1/prices/{symbol}symbol
string
Stock symbol, token symbol, or token address. Uppercased by server.
Response data:
basicInfo
object
Underlying quote (chain-agnostic).
onChain
object / null
On-chain token info for current chainId + productType.
For direct on-chain reference-price reads, see Stock Oracle.
Historical K-line
GET /api/v1/prices/{symbol}/historystartTime
number
No
—
Start (Unix seconds).
endTime
number
Yes
—
End (Unix seconds).
interval
string
Yes
—
1m, 3m, 5m, 15m, 1h, 1d, 1w.
adjustment
string
No
all
raw, split, dividend, spin-off, all.
limit
number
No
100
Max bars. Server max 5000.
Bar fields:
open
number
Open.
high
number
High.
low
number
Low.
close
number
Close.
volume
number
Volume.
timestamp
number
Bar time (Unix seconds).
Corporate actions
Query stock corporate actions (splits, dividends, etc.) for planning and display.
symbol
string
Yes
Stock symbol without a prefix, e.g. AAPL.
startTime
number
No
Start filter (Unix seconds). Filters on action time.
endTime
number
No
End filter (Unix seconds). Filters on action time.
types
array
No
Filter by corporate action type. Repeat param or comma-separated per client.
Allowed types:
reverse_splits
Reverse split.
forward_splits
Forward split.
unit_splits
Unit split.
stock_dividends
Stock dividend.
cash_dividends
Cash dividend.
Example:
Response
Standard envelope. data is an array of BrokerCorporateAction objects, newest first when filtered by time.
symbol
string
Stock symbol.
type
string
One of the types values above.
time
string
Action timestamp (ISO-8601 date-time).
exDate
string
Ex-dividend or ex-split date.
recordDate
string
Record date.
payableDate
string
Payable date.
processDate
string
Processing date.
info
object
Type-specific broker metadata. Shape varies by type.
info object (varies by type)
rate
dividends
Dividend rate per share.
special
dividends
Special dividend flag.
cusip
dividends
CUSIP identifier.
oldRate / newRate
splits
Split ratio components.
Example response:
Schema:
BrokerCorporateActionin openapi.snapshot.json.
Last updated

