Discover/wap.eastmoney.com API
live

wap.eastmoney.com APIwap.eastmoney.com

Access real-time quotes, K-line history, tick data, order books, and sector performance for Chinese A-shares and indices via the Eastmoney API.

Endpoints
7
Updated
10d ago
Try it
Maximum number of results to return
Search keyword (stock name, code, or pinyin abbreviation)
api.parse.bot/scraper/b978b1dd-7b63-47e0-9ab7-9338ac88303e/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/b978b1dd-7b63-47e0-9ab7-9338ac88303e/search_security?query=%E4%B8%8A%E8%AF%81%E6%8C%87%E6%95%B0' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 7 totalclick to expand

Search for securities (stocks, indices, funds) by name, code, or pinyin abbreviation. Use this to find the 'secid' (QuoteID) needed for other endpoints.

Input
ParamTypeDescription
countintegerMaximum number of results to return
queryrequiredstringSearch keyword (stock name, code, or pinyin abbreviation)
Response
{
  "type": "object",
  "fields": {
    "results": "array of security objects with Code, Name, PinYin, QuoteID (secid), SecurityTypeName"
  },
  "sample": {
    "data": {
      "results": [
        {
          "ID": "6005191",
          "JYS": "2",
          "Code": "600519",
          "Name": "贵州茅台",
          "MktNum": "1",
          "PinYin": "GZMT",
          "TypeUS": "2",
          "QuoteID": "1.600519",
          "Classify": "AStock",
          "InnerCode": "46077278941243",
          "MarketType": "1",
          "UnifiedCode": "600519",
          "SecurityType": "1",
          "SecurityTypeName": "沪A"
        }
      ]
    },
    "status": "success"
  }
}

About the wap.eastmoney.com API

This API exposes 7 endpoints covering Chinese securities market data from Eastmoney (wap.eastmoney.com), including real-time quotes, historical candlestick data at intervals from 1-minute to monthly, tick-by-tick trades, and Level-2 order book snapshots. Start with search_security to resolve a stock name or code into the secid format required by every other endpoint, then query get_realtime_quote, get_kline_data, or get_tick_data for live and historical market data.

Security Search and ID Resolution

All data endpoints require a secid in market.code format (e.g., 1.600519 for Kweichow Moutai on Shanghai, 0.000001 for Shenzhen Composite). Use search_security to resolve a stock name, code, or pinyin abbreviation into a secid. Results include Code, Name, PinYin, QuoteID, and SecurityTypeName, covering stocks, indices, and funds.

Real-Time Quotes and Order Book

get_realtime_quote returns a snapshot of current market conditions for a single security. Response fields use numeric codes: f43 (current price), f44 (high), f45 (low), f46 (open), f47 (volume), f48 (amount), f60 (previous close), and f170 (change percent), among others. You can pass a fields parameter to request only a subset. get_order_book returns up to 5 bid and 5 ask price levels with price and volume per level; note that bid/ask data may be empty outside regular trading hours.

Historical K-Lines and Tick Data

get_kline_data accepts a secid, an interval (1, 5, 15, 30, or 60 for intraday; 101/102/103 for daily/weekly/monthly), optional begin and end dates in YYYYMMDD format, and an adjustment flag (0=unadjusted, 1=forward, 2=backward). Each returned kline object includes datetime, open, close, high, low, volume, amount, amplitude, change_pct, change_amt, and turnover_rate. get_tick_data returns recent trade prints from the latest session, with each tick carrying time, price, volume, and a direction field valued Buy, Sell, or Neutral.

Stock and Sector Listings

get_stock_list returns a paginated list of equities with real-time performance fields (f2 for price, f3 for change percent, f6 for turnover amount). The fs parameter filters by market segment — for example, m:1+t:2 restricts results to Shanghai A-shares. Sorting is controlled by sort_field and sort_order. get_sector_list provides equivalent data at the industry or concept sector level, returning sector name (f14), BK-prefixed code (f12), and aggregate change percent (f3).

Common use cases
  • Build a watchlist app that resolves Chinese stock names to secids via search_security and polls get_realtime_quote for live prices
  • Back-test trading strategies using forward-adjusted daily OHLCV data from get_kline_data with adjustment=1
  • Display intraday price charts using 1-minute or 5-minute K-line intervals from get_kline_data
  • Monitor market depth by consuming Level-2 bid/ask levels from get_order_book for selected A-share securities
  • Rank stocks by single-day turnover or change percent using sorted, filtered results from get_stock_list
  • Track sector rotation by comparing daily change percent across industry and concept groups from get_sector_list
  • Reconstruct intraday trade flow using tick direction (Buy/Sell/Neutral) from get_tick_data
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Eastmoney provide an official developer API?+
Eastmoney does not publish a documented public developer API. The data accessible through this Parse API covers the market data surfaces available on wap.eastmoney.com.
What does `get_kline_data` return for the `adjustment` parameter, and what values are valid?+
adjustment controls price adjustment for corporate actions. Pass 0 for raw (unadjusted) prices, 1 for forward adjustment (prices adjusted toward the present), and 2 for backward adjustment. If omitted, unadjusted data is returned. All OHLCV fields in the klines array reflect the chosen adjustment method.
Is the order book data available outside market hours?+
The get_order_book endpoint returns the current bid and ask levels, but the bids and asks arrays may be empty outside regular A-share trading hours (weekdays 09:30–15:00 CST). The price, code, and name fields are still returned. Plan polling logic accordingly if you need order book depth only during active sessions.
Does the API cover Hong Kong (HKEx) or US-listed Chinese stocks?+
The current endpoints are scoped to Eastmoney's A-share market data (Shanghai and Shenzhen). Hong Kong equities, ADRs, and US-listed Chinese stocks are not covered by the existing endpoints. You can fork the API on Parse and revise it to add endpoints targeting those market segments.
Does `get_tick_data` return a full historical tick archive or only recent session data?+
get_tick_data returns ticks from the most recent trading session only — it is not a historical tick archive. The limit parameter caps how many of the most recent prints are returned within that session. Historical intraday granularity beyond the current session is available through get_kline_data at 1-minute intervals. If you need multi-session tick history, you can fork the API on Parse and revise it to add that endpoint.
Page content last updated . Spec covers 7 endpoints from wap.eastmoney.com.
Related APIs in FinanceSee all →
cmegroup.com API
Get CME Group market data including FedWatch interest-rate probabilities, futures quotes and settlements, volume/open interest history, and options expirations and near-the-money option chains.
guba.eastmoney.com API
Access Chinese stock discussion posts and comments from Eastmoney's community platform to monitor investor sentiment, search board discussions, and retrieve detailed post information and stock board metadata. Get real-time insights into what traders are discussing about specific stocks through posts, replies, and board analytics.
blur.io API
Access NFT collection data on Blur.io, including floor prices, best bids, listed tokens, and recent activity. Authenticate with an Ethereum wallet to place collection bids and retrieve portfolio holdings.
immobiliare.it API
Search Italian property listings for sale or rent, browse real estate agencies, and explore price trends across Italian cities — all via immobiliare.it.
etoro.com API
Monitor top eToro traders by accessing their profiles, portfolio holdings, performance statistics, and trading history to inform your investment decisions. Discover trending stocks and cryptocurrencies, search for specific instruments, and view detailed market data and news to stay updated on investment opportunities.
blackrock.com API
Access comprehensive BlackRock iShares ETF data to research fund performance, holdings, fees, and sector allocations, plus search and compare specific ETFs. Monitor investment details like distributions, key characteristics, and broad market indices all in one place.
morningstar.com.au API
Access comprehensive financial data for Australian stocks, ETFs, and managed funds including key metrics, valuations, dividends, and historical prices. Search securities, review company profiles and ownership details, and stay informed with market news and upcoming dividend information.
eprocurement.gov API
Monitor India's public procurement opportunities by accessing active tenders, bids closing today, global tenders, high-value contracts, and cancelled tenders from the Central Public Procurement Portal. Search tender details, browse participating organizations, and track real-time procurement statistics to stay informed on government contracting opportunities.
Eastmoney API – Chinese Stock Market Data · Parse