jinse.cn APIjinse.cn ↗
Access Jinse Finance (jinse.cn) crypto news, flash alerts, article content, trending stories, and keyword search via a structured JSON API.
curl -X GET 'https://api.parse.bot/scraper/aa091d79-fca5-4937-a2a4-34bc38dc03c3/get_news_list?limit=5&category=industry' \ -H 'X-API-Key: $PARSE_API_KEY'
Retrieve a paginated list of news articles by category key. Returns articles sorted by recency with pagination cursors (top_id and bottom_id) for fetching subsequent pages.
| Param | Type | Description |
|---|---|---|
| limit | integer | Number of items to return per page. |
| category | string | Category key for filtering news. Use keys from get_categories endpoint (e.g. 'industry', '独家', '比特币L2', 'Meme', '以太坊', '研报', '再质押', '空投', '符文'). |
| information_id | integer | Cursor for pagination. Use bottom_id from a previous response to fetch the next page. |
{
"type": "object",
"fields": {
"data": "object containing news list, count, top_id, and bottom_id for pagination",
"status_code": "integer indicating API success (0 = success)"
},
"sample": {
"data": {
"data": {
"v": 1,
"list": [
{
"id": 4799213,
"type": 1,
"extra": {
"author": "金色财经",
"summary": "Jeff Yan如何将Hyperliquid打造成全球人均盈利最高的初创公司",
"topic_id": 3731698,
"read_number": 100309,
"published_at": 1776143767
},
"title": "11个人9亿美金利润:藏身新加坡深处的Hyperliquid和其创始人的故事",
"short_title": "11人9亿美金利润:Hyperliquid和其创始人Yan的故事"
}
],
"news": 20,
"count": 20,
"total": 20,
"top_id": 4799213,
"bottom_id": 4781926
},
"status_code": 0
},
"status": "success"
}
}About the jinse.cn API
The Jinse Finance API provides 6 endpoints covering cryptocurrency and blockchain news from jinse.cn, including paginated article lists, a 7×24 flash news feed, full article content, and keyword search. The get_flash_news_list endpoint returns date-grouped breaking news with cursor-based pagination, while get_hot_news surfaces the top 10 articles ranked by read count over the past 24 hours.
News Articles and Categories
The get_news_list endpoint returns paginated articles filtered by category. Categories are fetched separately via get_categories, which returns each category's key (used as the category input) and its Chinese name. Pagination uses top_id and bottom_id cursor fields returned in each response — pass bottom_id as the information_id parameter to advance through older articles. Supported category keys include values like industry, 独家, 比特币L2, and Meme.
Flash News and Article Detail
get_flash_news_list delivers the 7×24 breaking news feed. Each response groups items by date, with a lives array of flash items per date object. Pass the id of the last item in a response as last_id to load the next page. To retrieve full article content from any article ID surfaced by get_news_list, get_hot_news, or search_news, call get_news_detail with that article_id. The response includes the article title, the extracted body as content (HTML), and the complete page html.
Search and Trending
search_news accepts a keyword (e.g. Bitcoin or 以太坊) and returns a structured data object with fields covering project info, topic results, new_flashes, features, matched authors, and related keywords. get_hot_news requires no inputs and returns an array of up to 10 articles, each carrying id, title, read_number, covers, published_at, and author metadata.
- Aggregate real-time Chinese-language crypto flash news into an English-language dashboard using
get_flash_news_list - Track the 24-hour top stories on Jinse by polling
get_hot_newsand sorting byread_number - Build a keyword alert system for terms like '以太坊' or 'Bitcoin' using
search_newsand monitoringnew_flashesin the response - Populate a category-filtered news feed app using
get_categorieskeys withget_news_listand cursor-based pagination - Extract full article HTML and body content for NLP or translation pipelines via
get_news_detail - Surface related authors and projects for a given search term using the
authorsandprojectfields fromsearch_news
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.
Does Jinse Finance have an official developer API?+
How does pagination work in `get_news_list` and `get_flash_news_list`?+
get_news_list returns top_id and bottom_id cursor values in each response. Pass bottom_id as the information_id parameter on your next request to fetch the next page of older articles. get_flash_news_list uses a simpler cursor: pass the id of the last flash item in a response as last_id to continue paginating.Does `search_news` support filtering results by date range or category?+
search_news accepts only a keyword string and returns a fixed set of result types: project info, topics, recent flash news, featured content, authors, and related keywords. Date filtering and category scoping are not exposed. You can fork this API on Parse and revise it to add a filtered search endpoint if you need those parameters.