skills/tushare-data-1.0.5/references/数据接口/美股数据/美股利润表.md
wangyitong a65adcc2e5 Initial commit: merged, deduplicated, and vetted skill collection
Sources: extracted from two upstream archives (skill-repo, skills-main),
merged with the following policy:

- 15 broken symlinks (pointing to /Users/jameslee/.cc-switch/skills or
  ../../.agents/skills on a foreign machine) discarded
- 3 real name collisions with identical content (ai-pair, ifind-http-api,
  zhipu-websearch) kept as one copy
- Functional overlaps deduped keeping the strongest variant:
  - docx family: kept docx (official, full toolchain) + docx-cn
    (GB/T 9704 Chinese official-document constants),
    dropped docx_writer (no scripts, name collided with docx)
  - humanizer family: kept humanizer-zh (6 zh reference docs),
    dropped humanizer (en, redundant for CN workflow)
- Skills that only ran in a foreign environment removed:
  ablemind-ops, app-publish, hlb-design-system, openclaw-adj-skill,
  claude-driver
- alphapai excluded from this public repo because its SKILL.md hard-coded
  live credentials

Result: 25 skills, 572 files, ~7.5 MB.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-13 14:47:12 +08:00

73 lines
2.8 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## 美股利润表
----
接口us_income可以通过[**数据工具**](https://tushare.pro/webclient/)调试和查看数据。
描述:获取美股上市公司财务利润表数据(目前只覆盖主要美股和中概股)
权限需单独开权限或有15000积分具体权限信息请参考[权限列表](https://tushare.pro/document/1?doc_id=290)
提示当前接口按单只股票获取其历史数据单次请求最大返回10000行数据可循环提取
<br>
<br>
**输入参数**
名称 | 类型 | 必选 | 描述
---- | ----- | ---- | ----
ts_code | str | Y | 股票代码
period | str | N | 报告期格式YYYYMMDD每个季度最后一天的日期如20241231)
ind_name | str | N | 指标名(如:新增借款)
report_type | str | N | 报告期类型(Q1一季报Q2半年报Q3三季报Q4年报)
start_date | str | N | 报告期开始时间格式YYYYMMDD
end_date | str | N | 报告结束始时间格式YYYYMMDD
<br>
<br>
**输出参数**
名称 | 类型 | 默认显示 | 描述
--- | ---- | ---- | ----
ts_code | str | Y | 股票代码
end_date | str | Y | 报告期
ind_type | str | Y | 报告期类型(Q1一季报Q2半年报Q3三季报Q4年报)
name | str | Y | 股票名称
ind_name | str | Y | 财务科目名称
ind_value | float | Y | 财务科目值
report_type | str | Y | 报告类型
<br>
<br>
**接口用法**
```python
pro = ts.pro_api()
#获取美股英伟达NVDA股票的2024年度利润表数据
df = pro.us_income(ts_code='NVDA', period='20241231')
#获取美股英伟达NVDA股票利润表历年营业额数据
df = pro.us_income(ts_code='NVDA', ind_name='营业额')
```
<br>
<br>
**数据样例**
ts_code end_date ind_type name ind_name ind_value report_type
0 NVDA 20250427 Q1 英伟达 非运算项目 2.271500e+10 单季报
1 NVDA 20250427 Q1 英伟达 全面收益总额 1.893300e+10 单季报
2 NVDA 20250427 Q1 英伟达 其他全面收益合计项 1.580000e+08 单季报
3 NVDA 20250427 Q1 英伟达 其他全面收益其他项目 1.580000e+08 单季报
4 NVDA 20250427 Q1 英伟达 本公司拥有人占全面收益总额 1.893300e+10 单季报
... ... ... ... ... ... ... ...
1929 NVDA 20050501 Q1 英伟达 营销费用 4.805800e+07 单季报
1930 NVDA 20050501 Q1 英伟达 研发费用 8.591300e+07 单季报
1931 NVDA 20050501 Q1 英伟达 毛利 2.101530e+08 单季报
1932 NVDA 20050501 Q1 英伟达 营业成本 3.736930e+08 单季报
1933 NVDA 20050501 Q1 英伟达 营业收入 5.838460e+08 单季报