News Flash
Real-time Chinese financial news flashes, aggregating 7x24 rolling feeds from three sources—Cailianshe (cls), Jin10 (jin10), and Sina (sina)—with each item carrying Chinese body text, tags, an importance level, publish time, and a source link. Suitable for event-driven monitoring, intraday news-flow tracking, and sentiment-signal construction. Queries must specify a single source via the source parameter; body text is Chinese-only, and since the three sources overlap heavily and are not merged, filtering by importance helps reduce noise.
GET /v2/news/flashParameters
Name
Type
Required
Description
source
string
Yes
News source (cls / jin10 / sina)
start_date
string
No
Start date (YYYYMMDD)
end_date
string
No
End date (YYYYMMDD)
importance
string
No
Importance filter, optional
Response Fields
Field
Type
Description
source
string
News source (cls / jin10 / sina)
publish_time
string
Publish timestamp
content_cn
string
Flash content (Chinese)
tags
string
Category tags (nullable)
importance
int
Importance flag 0/1 (nullable)
url
string
Source article URL (nullable)
API Example
cURL
curl -H "X-API-Key: YOUR_KEY" \
"https://asharehub.com/v2/news/flash?source=cls"
Python SDK
from asharehub import AShareHub
client = AShareHub(api_key="YOUR_KEY")
df = client.news_flash(source="cls")
print(df.head())
Sample Data
returns a pandas.DataFrame
| source | publish_time | content_cn | tags | importance | url |
|---|---|---|---|---|---|
| cls | 2026-06-27T01:16:21 | 财联社6月27日电,美联储隔夜逆回购协… | 环球市场情报 | 1 | https://www.cls.cn/… |
| cls | 2026-06-27T01:15:48 | 财联社6月27日电,美国联邦贸易委员会… | 环球市场情报 | 1 | https://www.cls.cn/… |
| cls | 2026-06-27T01:12:02 | 财联社6月27日电,美国疾病控制与预防… | 环球市场情报 | 1 | https://www.cls.cn/… |
Esc