Stock Earnings Calendar
curl --request POST \
--url https://api.reportify.cn/v1/stock/earnings-calendar \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"market": "cn",
"start_date": "2025-11-20",
"end_date": "2025-12-31",
"symbol": "000300"
}
'import requests
url = "https://api.reportify.cn/v1/stock/earnings-calendar"
payload = {
"market": "cn",
"start_date": "2025-11-20",
"end_date": "2025-12-31",
"symbol": "000300"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
market: 'cn',
start_date: '2025-11-20',
end_date: '2025-12-31',
symbol: '000300'
})
};
fetch('https://api.reportify.cn/v1/stock/earnings-calendar', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.reportify.cn/v1/stock/earnings-calendar",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'market' => 'cn',
'start_date' => '2025-11-20',
'end_date' => '2025-12-31',
'symbol' => '000300'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.reportify.cn/v1/stock/earnings-calendar"
payload := strings.NewReader("{\n \"market\": \"cn\",\n \"start_date\": \"2025-11-20\",\n \"end_date\": \"2025-12-31\",\n \"symbol\": \"000300\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.reportify.cn/v1/stock/earnings-calendar")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"market\": \"cn\",\n \"start_date\": \"2025-11-20\",\n \"end_date\": \"2025-12-31\",\n \"symbol\": \"000300\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.reportify.cn/v1/stock/earnings-calendar")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"market\": \"cn\",\n \"start_date\": \"2025-11-20\",\n \"end_date\": \"2025-12-31\",\n \"symbol\": \"000300\"\n}"
response = http.request(request)
puts response.read_body{
"status": 123,
"code": 123,
"message": "<string>",
"data": {}
}{
"status": 123,
"code": 123,
"message": "<string>"
}{
"status": 123,
"code": 123,
"message": "<string>"
}{
"status": 123,
"code": 123,
"message": "<string>"
}日历数据
Earnings Calendar
Query stock earnings calendar by date range and market area (cn/hk/us). Returns fiscal year, quarter, and filing dates for earnings reports
POST
/
v1
/
stock
/
earnings-calendar
Stock Earnings Calendar
curl --request POST \
--url https://api.reportify.cn/v1/stock/earnings-calendar \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"market": "cn",
"start_date": "2025-11-20",
"end_date": "2025-12-31",
"symbol": "000300"
}
'import requests
url = "https://api.reportify.cn/v1/stock/earnings-calendar"
payload = {
"market": "cn",
"start_date": "2025-11-20",
"end_date": "2025-12-31",
"symbol": "000300"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
market: 'cn',
start_date: '2025-11-20',
end_date: '2025-12-31',
symbol: '000300'
})
};
fetch('https://api.reportify.cn/v1/stock/earnings-calendar', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.reportify.cn/v1/stock/earnings-calendar",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'market' => 'cn',
'start_date' => '2025-11-20',
'end_date' => '2025-12-31',
'symbol' => '000300'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.reportify.cn/v1/stock/earnings-calendar"
payload := strings.NewReader("{\n \"market\": \"cn\",\n \"start_date\": \"2025-11-20\",\n \"end_date\": \"2025-12-31\",\n \"symbol\": \"000300\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.reportify.cn/v1/stock/earnings-calendar")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"market\": \"cn\",\n \"start_date\": \"2025-11-20\",\n \"end_date\": \"2025-12-31\",\n \"symbol\": \"000300\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.reportify.cn/v1/stock/earnings-calendar")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"market\": \"cn\",\n \"start_date\": \"2025-11-20\",\n \"end_date\": \"2025-12-31\",\n \"symbol\": \"000300\"\n}"
response = http.request(request)
puts response.read_body{
"status": 123,
"code": 123,
"message": "<string>",
"data": {}
}{
"status": 123,
"code": 123,
"message": "<string>"
}{
"status": 123,
"code": 123,
"message": "<string>"
}{
"status": 123,
"code": 123,
"message": "<string>"
}查询股票财报日历
URL:/v1/stock/earnings-calendar方法:
POST描述: 根据市场区域和日期范围查询股票财报发布日历。
请求参数
| 参数名 | 类型 | 必填 | 描述 |
|---|---|---|---|
| market | string | 是 | 股票市场:cn(中国)、hk(香港)、us(美国) |
| symbol | string | 否 | 股票代码(可选,用于查询特定股票) |
| start_date | string | 是 | 开始日期(格式:YYYY-MM-DD) |
| end_date | string | 是 | 结束日期(格式:YYYY-MM-DD) |
响应参数
| 参数名 | 类型 | 描述 |
|---|---|---|
| status | integer | HTTP 状态码 |
| code | integer | 业务状态码 |
| message | string | 响应消息 |
| data | object | 响应数据 |
data 对象结构
| 参数名 | 类型 | 描述 |
|---|---|---|
| items | array | 财报发布项目列表 |
财报项目对象结构
| 参数名 | 类型 | 描述 |
|---|---|---|
| symbol | string | 股票代码 |
| name | string | 公司名称 |
| fillingDate | string | 财报发布日期(ISO 8601) |
示例代码
cURL 示例
curl -X POST "https://api.reportify.cn/v1/stock/earnings-calendar" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"market": "hk",
"start_date": "2025-08-01",
"end_date": "2025-08-31"
}'
Python 示例
import requests
url = "https://api.reportify.cn/v1/stock/earnings-calendar"
headers = {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
}
data = {
"market": "hk",
"start_date": "2025-08-01",
"end_date": "2025-08-31"
}
response = requests.post(url, headers=headers, json=data)
result = response.json()
print(f"状态码: {result['status']}")
print(f"财报发布数量: {len(result['data']['items'])}")
for item in result['data']['items']:
print(f"\n股票代码: {item['symbol']}")
print(f"公司名称: {item['name']}")
print(f"发布日期: {item['fillingDate']}")
Python 示例(查询特定股票)
import requests
url = "https://api.reportify.cn/v1/stock/earnings-calendar"
headers = {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
}
data = {
"market": "cn",
"symbol": "000300",
"start_date": "2025-11-20",
"end_date": "2025-12-31"
}
response = requests.post(url, headers=headers, json=data)
result = response.json()
if result['data']['items']:
item = result['data']['items'][0]
print(f"股票代码: {item['symbol']}")
print(f"公司名称: {item['name']}")
print(f"财报发布日期: {item['fillingDate']}")
else:
print("指定股票代码在指定日期范围内没有财报发布")
响应示例
成功响应(有数据)
{
"status": 200,
"code": 0,
"message": "",
"data": {
"items": [
{
"symbol": "01997",
"name": "九龙仓置业",
"fillingDate": "2025-08-07T00:00:00+08:00"
},
{
"symbol": "00087",
"name": "太古股份公司B",
"fillingDate": "2025-08-07T00:00:00+08:00"
},
{
"symbol": "00019",
"name": "太古股份公司A",
"fillingDate": "2025-08-07T00:00:00+08:00"
}
]
}
}
成功响应(无数据)
{
"status": 200,
"code": 0,
"message": "",
"data": {
"items": []
}
}
注意事项
- market 参数值:
cn- 中国 A 股市场hk- 香港股票市场us- 美国股票市场
- 日期格式:
start_date和end_date必须使用YYYY-MM-DD格式 - 日期范围:建议查询范围不超过 3 个月,以获得最佳性能
- symbol 参数:可选参数,不提供时返回该时间段内所有股票的财报日历
- 时间格式:
fillingDate使用 ISO 8601 格式,包含时区信息 - 排序:结果按
fillingDate升序排列 - 空响应:如果
data.items为空数组,说明指定股票代码在指定日期范围内没有财报发布
Authorizations
Enter your Bearer token
Body
application/json
Input schema for StockEarningsCalendarTool
⌘I
