To make it easier for developers, quantitative trading teams, and fintech platforms to integrate stock token market data, Infoway API has officially launched its Real-Time Stock Token Market Data API.

The API currently provides access to real-time and historical data for 64 stock tokens, including complete trade and market depth data.

Full Stock Token Symbol List

Below is the complete list of stock token products currently supported by Infoway API:

AAPLUSDTApple Inc.
ABBVUSDTAbbVie Inc.
ADBEUSDTAdobe Inc.
AMDUSDTAdvanced Micro Devices, Inc.
AMZNUSDTAmazon.com, Inc.
ARMUSDTArm Holdings plc
ASMLUSDTASML Holding N.V.
AVGOUSDTBroadcom Inc.
BACUSDTBank of America Corporation
BEUSDTBloom Energy Corporation
BMNRUSDTBitMine Immersion Technologies, Inc.
BRKBUSDTBerkshire Hathaway Inc. Class B
COHRUSDTCoherent Corp.
COINUSDTCoinbase Global, Inc.
COPUSDTConocoPhillips
COSTUSDTCostco Wholesale Corporation
CRCLUSDTCircle Internet Group, Inc.
CRMUSDTSalesforce, Inc.
CRWDUSDTCrowdStrike Holdings, Inc.
CRWVUSDTCoreWeave, Inc.
CSCOUSDTCisco Systems, Inc.
CVXUSDTChevron Corporation
DISUSDTThe Walt Disney Company
EWJUSDTiShares MSCI Japan ETF
EWYUSDTiShares MSCI South Korea ETF
GEVUSDTGE Vernova Inc.
GMEUSDTGameStop Corp.
GOOGLUSDTAlphabet Inc. Class A
HOODUSDTRobinhood Markets, Inc.
INTCUSDTIntel Corporation
IRENUSDTIREN Limited
JDUSDTJD.com, Inc.
JPMUSDTJPMorgan Chase & Co.
KLACUSDTKLA Corporation
LITEUSDTLumentum Holdings Inc.
LLYUSDTEli Lilly and Company
LRCXUSDTLam Research Corporation
METAUSDTMeta Platforms, Inc.
MSFTUSDTMicrosoft Corporation
MSTRUSDTMicroStrategy Incorporated
MUUSDTMicron Technology, Inc.
NFLXUSDTNetflix, Inc.
NVDAUSDTNVIDIA Corporation
ORCLUSDTOracle Corporation
OXYUSDTOccidental Petroleum Corporation
PDDUSDTPDD Holdings Inc.
PLTRUSDTPalantir Technologies Inc.
PYPLUSDTPayPal Holdings, Inc.
QCOMUSDTQUALCOMM Incorporated
QQQUSDTInvesco QQQ Trust
RKLBUSDTRocket Lab USA, Inc.
SNDKUSDTSandisk Corporation
SOXLUSDTDirexion Daily Semiconductor Bull 3X Shares
SPYUSDTSPDR S&P 500 ETF Trust
TSLAUSDTTesla, Inc.
TSMUSDTTaiwan Semiconductor Manufacturing Company Limited
USARUSDTUSA Rare Earth, Inc.
VRTUSDTVertiv Holdings Co
WDCUSDTWestern Digital Corporation
XAGUSDTSilver
XAUUSDTGold
XCUUSDTCopper
XPDUSDTPalladium
XPTUSDTPlatinum

API Response Examples

1. Retrieve Stock Token Candlestick Data

Supports multiple time intervals, including 1-minute, 5-minute, and more:

{
  "s": "TSLAUSDT",
  "respList": [
    {
      "t": "1779667200",
      "h": "432.50000",
      "o": "431.64000",
      "l": "431.09000",
      "c": "432.16000",
      "v": "22486.02390",
      "vw": "9708560.17097",
      "pc": "0.09%",
      "pca": "0.40000"
    }
  ]
}

For the candlestick API tutorial, please refer to the documentation: POST Candlestick(Real/Historical)

2. Retrieve Stock Token Trade Data

Below is an example of real-time trade data for AAPLUSDT.

{
  "s": "AAPLUSDT",
  "t": 1779722106663,
  "p": "312.55000",
  "v": "6.25100",
  "vw": "1953.75005",
  "td": 0
}

Latest Trade endpoint tutorial: GET Latest Trade

3. Retrieve Stock Token Order Book Data

Stock tokens support Level-1 bid and ask order book queries. (Documentation: GET Market Depth)

{
  "s": "PDDUSDT",
  "t": 1779722536399,
  "a": [
    [
      "94.68000"
    ],
    [
      "239.0"
    ]
  ],
  "b": [
    [
      "94.64000"
    ],
    [
      "239.0"
    ]
  ]
}

Frequently Asked Questions

1. Which plans include access to stock token market data?

All plans except market-specific packages support stock token market data access, including the free trial plan.

2. Are stock tokens traded 24/7?

Yes. Like other crypto assets, stock tokens have trading activity around the clock.

3. How can I retrieve financial statement data for the underlying listed companies?

You can access company financial data through our Financial Statements API.

For details, please refer to the documentation: GET Stock Financial Data

4. Which access methods are supported?

All Infoway API market data services support both RESTful APIs and WebSocket connections.

5. How can I start the free trial?

Simply register an account on our official website to automatically receive a free API key.