News Introduction
The news section is updated daily, featuring original content and in-depth research. It focuses on tracking major developments and breaking events in the global financial markets. The section provides categorized summaries of key markets such as crude oil, precious metals, foreign exchange, and futures, along with forward-looking perspectives, exclusive insights, and professional analysis. By exploring macroeconomic policies, market dynamics, and investment opportunities in depth, the news section aims to deliver high-value information and strategic references for investors, helping readers make more forward-looking judgments and decisions in an increasingly complex and volatile market environment.
News API
News List
Interface Address
Input Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| token | string | Yes | API Access Token |
| date | string | Yes | Date (format: YYYY-MM-DD) |
Output Parameters
| Name | Description |
|---|---|
| code | Status Code |
| message | Status Message |
| data | Data |
| NewsID | News ID |
| NewsTitle | News Title |
| NewsSummary | Summary |
| PreviewImg | Thumbnail |
| CreateDate | Create Date |
Sample Response
{
"code": 200,
"message": "success",
"data": [
{
"NewsID": "202508061631589089",
"NewsTitle": "News Title",
"NewsSummary": "Summary",
"PreviewImg": "https://example.com/img.jpg",
"CreateDate": "2025-08-06 16:31:59"
}
]
}
News Details
Interface Address
Input Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| token | string | Yes | API Access Token |
| newsid | string | Yes | News ID (can be obtained from the top news list API) |
Output Parameters
| Name | Description |
|---|---|
| code | Status Code |
| message | Status Message |
| data | Data |
| NewsID | News ID |
| NewsTitle | News Title |
| NewsSummary | Release Time |
| PreviewImg | Thumbnail |
| NewsContent | News Content |
Sample Response
{
"code": 200,
"message": "success",
"data": [
{
"NewsID": "202508061631589089",
"NewsTitle": "News Title",
"NewsSummary": "Summary",
"PreviewImg": "https://example.com/img.jpg",
"NewsContent": "News Content (HTML format, including the full article)"
}
]
}