Discover/Wall Street CN API
live

Wall Street CN APIwallstreetcn.com

Access real-time 7x24 flash news and daily morning briefings from wallstreetcn.com. Returns titles, content, publish times, sources, and pagination cursors.

This API takes change requests — .
Endpoint health
verified 2h ago
get_flash_news
get_morning_reports
2/2 passing latest checkself-healing
Endpoints
2
Updated
2h ago

What is the Wall Street CN API?

The Wall Street CN API provides access to two financial news feeds from wallstreetcn.com through 2 endpoints: get_flash_news for real-time 7x24 flash news items and get_morning_reports for daily morning briefing articles. Each flash news item returns up to 9 fields including content text, channel tags, and a display timestamp, while morning reports include author, summary, and an associated image URL.

This call costs1 credit / call— charged only on success
Try it
Number of flash news items to return per page.
Pagination cursor from a previous response's next_cursor field. Omit for the first page (returns latest items).
api.parse.bot/scraper/9cbe8e4e-c1c6-4131-a8e9-b23ad05d4080/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/9cbe8e4e-c1c6-4131-a8e9-b23ad05d4080/get_flash_news?limit=5' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace wallstreetcn-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Wall Street CN SDK — browse flash news and morning reports."""
from parse_apis.wallstreetcn_com_api import WallStreetCN, ParseError

client = WallStreetCN()

# Browse the latest flash news items, capped at 5 total.
for item in client.flash_news.list(limit=5):
    print(item.display_time_formatted, item.content_text[:80])

# Grab the most recent morning report for a quick summary.
try:
    report = client.morning_reports.list(limit=1).first()
except ParseError as e:
    print(f"Extraction failed: {e.code}")
    report = None

if report is not None:
    print(report.title)
    print(report.summary)
    print(report.uri)

print("exercised: flash_news.list / morning_reports.list")
All endpoints · 2 totalmissing one? ·

Fetch latest 7x24 flash news (快讯) from Wall Street CN. Returns a paginated list of real-time financial news items with content text, publish time, author, and channel tags. Use the returned next_cursor value to paginate through older items. Each request makes one API call.

Input
ParamTypeDescription
limitintegerNumber of flash news items to return per page.
cursorstringPagination cursor from a previous response's next_cursor field. Omit for the first page (returns latest items).
Response
{
  "type": "object",
  "fields": {
    "count": "integer number of items returned",
    "items": "array of flash news objects with id, title, content_text, display_time, display_time_formatted, source, uri, score, channels",
    "next_cursor": "string cursor for fetching the next page"
  },
  "sample": {
    "data": {
      "count": 5,
      "items": [
        {
          "id": 3155655,
          "uri": "https://wallstreetcn.com/livenews/3155655",
          "score": 1,
          "title": "",
          "source": "石惠",
          "channels": [
            "global-channel",
            "forex-channel"
          ],
          "content_text": "台湾证交所加权股价指数高开0.1%,报45,890.18点。",
          "display_time": 1787792454,
          "display_time_formatted": "2026-08-27 01:00:54"
        }
      ],
      "next_cursor": "1787792225"
    },
    "status": "success"
  }
}

About the Wall Street CN API

Flash News (7x24快讯)

The get_flash_news endpoint returns paginated real-time financial news items from Wall Street CN's continuous news feed. Each item in the items array includes id, title, content_text, display_time (Unix timestamp), display_time_formatted (human-readable string), source, uri, score, and channels (an array of topic tags). Control page size with the limit parameter, and pass the next_cursor value from one response into the cursor parameter of the next call to walk backward through older items. Omitting cursor always returns the most recent items.

Morning Reports (早报)

The get_morning_reports endpoint returns Wall Street CN's daily morning briefing articles. Each object in the items array carries id, title, summary, display_time, display_time_formatted, source, author, uri, and image (a URL to the article's cover image). The same cursor-based pagination applies: use next_cursor from each response as the cursor input on the next call to retrieve older reports.

Pagination Behavior

Both endpoints share the same pagination contract. The count field tells you how many items were returned in the current page. When no more items are available in the direction you are paginating, next_cursor will be absent or null. Neither endpoint supports forward-pagination or filtering by date range directly — iteration is strictly sequential using cursor values.

Reliability & maintenanceVerified

The Wall Street CN API is a managed, monitored endpoint for wallstreetcn.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when wallstreetcn.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official wallstreetcn.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
2h ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Aggregate real-time Chinese financial market news into a trading dashboard using content_text and display_time fields from flash news
  • Build a daily briefing digest tool that pulls the latest morning report title and summary each morning
  • Tag and classify news by topic using the channels array returned in each flash news item
  • Track which sources are publishing the most flash news items by aggregating the source field across pages
  • Display article thumbnails in a news reader app using the image field from morning report responses
  • Archive historical flash news by paginating through older items using sequential next_cursor values
  • Monitor author activity on morning reports by filtering the author field across multiple pages
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does wallstreetcn.com have an official developer API?+
wallstreetcn.com does not publish a documented public developer API for third-party use. There is no official API portal or documented endpoints available to external developers.
What does the `channels` field in flash news items contain?+
The channels field is an array of topic or category tags associated with each flash news item. These can be used to group or filter items by subject area such as macro-economics, equities, or commodities after retrieval, since the endpoint itself does not accept a channel filter parameter.
Can I filter flash news or morning reports by date range or keyword?+
Not currently. Both get_flash_news and get_morning_reports return items in reverse-chronological order and support only cursor-based pagination via the cursor parameter. There is no built-in date range filter or keyword search. You can fork this API on Parse and revise it to add a date-filtering or search endpoint.
Does the API return the full article body for morning reports?+
Morning report items include a summary field but not the full article body text. The uri field provides a link to the full article on wallstreetcn.com. Full article content is not currently returned. You can fork this API on Parse and revise it to add a full-article-content endpoint.
How fresh is the flash news data?+
The flash news feed reflects Wall Street CN's 7x24 real-time stream. Each call to get_flash_news without a cursor returns the most recently published items. The display_time and display_time_formatted fields on each item show the exact publish timestamp so you can assess freshness per item.
Page content last updated . Spec covers 2 endpoints from wallstreetcn.com.
Related APIs in News MediaSee all →
jinse.cn API
Access Jinse Finance's latest cryptocurrency and blockchain news, including flash news alerts, detailed articles, and trending stories across multiple categories. Search through news content, explore hot topics, and stay updated with real-time financial news from the Jinse Finance platform.
wap.eastmoney.com API
Access real-time stock quotes, historical K-line charts at 1-minute intervals, and tick data for Chinese securities markets and beyond. Search specific securities, retrieve sector performance, view order books, and pull comprehensive stock lists to power your financial analysis and trading applications.
jin10.com API
Access real-time financial flash news, economic calendar events, macroeconomic indicators, and article content from jin10.com. Supports search, pagination, and category filtering across all major data types.
qq.com API
Access the latest news, articles, stock indices, and sports schedules from QQ.com's homepage, and search across multiple news categories to stay informed on hot topics and evening reports. Get real-time data including homepage content, images, links, and live sports schedules all from one unified service.
morningstar.com API
Get comprehensive financial data including stock quotes, company profiles, historical financials, valuation metrics, ownership details, dividends, and market movers from Morningstar. Search securities and access the latest stock news to make informed investment decisions.
bloomberg.com API
Track stock indices, commodities, currencies, and bonds in real-time, while monitoring market movers and staying updated with the latest financial news. Get comprehensive Bloomberg market data to make informed investment decisions across multiple asset classes.
stockanalysis.com API
Access comprehensive stock market data including real-time financials, income statements, statistics, and IPO calendars to research individual stocks and identify market movers. Search stocks, view detailed overviews, and monitor premarket activity all in structured, easy-to-use format.
cls.cn API
Monitor real-time financial flash news from Cailianshe with instant access to breaking updates, content, timestamps, and importance levels across different market categories. Filter and track the latest market developments to stay informed on time-sensitive financial events as they happen.