Skip to main content

Client SDK for FinSight read-only latest-trade-day data API

Project description

FinSight Data SDK

FinSight 数据服务提供只读行情接口。实时接口只支持全市场统一快照,不支持按单个股票代码查询。

1. 安装

pip install finsight-data

2. 初始化

from finsight_data import FinSightDataClient

client = FinSightDataClient(token="YOUR_DATA_API_TOKEN")
参数 必填 类型 说明
token str 数据接口 token
timeout int 请求超时秒数,默认 20
base_url str 服务地址,默认官方地址
device_fingerprint str 设备指纹,默认自动生成

3. 最新交易日板块资金流向

data = client.get_stock_sector_fund_flow_daily_latest(
    board_type="行业",
    keyword="半导体",
    limit=100,
    offset=0,
)
参数 必填 类型 说明
board_type str 板块类型:行业概念板块;为空表示不限
keyword str 按板块代码或名称搜索
limit int 返回条数;不填返回筛选后的全部结果
offset int 偏移量,默认 0
allow_rebind bool 是否允许本次请求消耗一次设备换绑机会

输出:

{
  "ok": true,
  "trade_date": "2026-05-18",
  "total": 86,
  "items": [
    {
      "code": "BK1036",
      "name": "半导体",
      "board_type": "行业",
      "pct_chg": 2.15,
      "main_net_inflow_amount": 123456789.0,
      "main_net_inflow_ratio": 4.32
    }
  ]
}

4. 最新交易日个股资金流向

data = client.get_stock_individual_fund_flow_daily_latest(
    codes=["600519", "000858"],
    keyword="",
    limit=100,
    offset=0,
)
参数 必填 类型 说明
codes list[str] 股票代码列表;为空表示不限
keyword str 按股票代码或名称搜索
limit int 返回条数;不填返回筛选后的全部结果
offset int 偏移量,默认 0
allow_rebind bool 是否允许本次请求消耗一次设备换绑机会

输出:

{
  "ok": true,
  "trade_date": "2026-05-18",
  "total": 2,
  "items": [
    {
      "code": "600519",
      "name": "贵州茅台",
      "latest_price": 1688.0,
      "pct_chg": 1.25,
      "main_net_inflow_amount": 123456789.0,
      "main_net_inflow_ratio": 3.21
    }
  ]
}

5. 最新交易日前复权日线

data = client.get_stock_daily_kline_q_latest(
    codes=["600519"],
    keyword="",
    limit=100,
    offset=0,
)
参数 必填 类型 说明
codes list[str] 股票代码列表;为空表示不限
keyword str 按股票代码搜索
limit int 返回条数;不填返回筛选后的全部结果
offset int 偏移量,默认 0
allow_rebind bool 是否允许本次请求消耗一次设备换绑机会

输出:

{
  "ok": true,
  "trade_date": "2026-05-18",
  "total": 1,
  "items": [
    {
      "code": "600519",
      "open_price": 1680.0,
      "close_price": 1688.0,
      "high_price": 1699.0,
      "low_price": 1666.0,
      "volume": 123456,
      "amount": 234567890.0,
      "pct_chg": 1.25
    }
  ]
}

6. 实时全市场个股快照

单次拉取:

frame = client.get_realtime_full_market_snapshot(include_rows=True)
print(frame["seq"], frame["timestamp"], frame["returned_rows"])

持续接收:

for frame in client.iter_realtime_full_market_snapshot():
    print(frame["seq"], frame["timestamp"], frame["returned_rows"])

模拟实盘:

for frame in client.iter_realtime_full_market_snapshot(
    simulate_live=True,
    simulation_interval_seconds=1,
):
    print(frame["simulate_live"], frame["seq"])
参数 必填 类型 说明
include_rows bool 是否返回解压后的 rows,默认 True
keep_packed_rows bool 解压后是否保留 rows_gzip_b64
simulate_live bool 是否启用模拟实盘模式
simulation_interval_seconds float 模拟实盘推送间隔
reconnect bool SSE 断线后是否自动重连,仅持续接收接口支持
max_reconnects int 最大自动重连次数,仅持续接收接口支持
allow_rebind bool 是否允许本次请求消耗一次设备换绑机会

输出:

{
  "ok": true,
  "mode": "full_market_only",
  "data_key": "full_market",
  "seq": 123456,
  "timestamp": "2026-05-18 09:31:03",
  "total": 5300,
  "cols": ["code", "name", "price", "pct_chg", "zljlr"],
  "sorted_by": "zljlr_desc",
  "packed": true,
  "min_interval_seconds": 3,
  "token_scope": "data_api",
  "rows": [
    ["600000", "浦发银行", 10.25, 1.18, 28340000.0]
  ],
  "returned_rows": 5300
}

7. Token 用量

usage = client.get_token_usage()
print(usage["summary"]["day"]["remaining"])

输出:

{
  "ok": true,
  "service": "finsight-data",
  "token_scope": "data_api",
  "account": {
    "username": "demo_user",
    "is_admin": false
  },
  "device_binding": {
    "mode": "bind_on_first_use",
    "is_bound": true,
    "rebind_remaining": 1
  },
  "summary": {
    "day": {
      "limit": 100,
      "used": 2,
      "remaining": 98,
      "resets_at": "2026-05-19T00:00:00+08:00"
    }
  },
  "endpoints": []
}

8. 错误码

状态码 说明
400 参数错误
401 token 缺失或无效
403 token 无权限、设备不匹配或实时接口不在可用时段
429 频率、额度、并发或队列限制
503 服务滚动更新中,请稍后重试

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

finsight_data-1.0.0-cp312-cp312-manylinux_2_28_x86_64.whl (754.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

finsight_data-1.0.0-cp39-cp39-macosx_10_9_universal2.whl (230.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file finsight_data-1.0.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for finsight_data-1.0.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f6029559901814f27e997718cea4568fc907253649c008f92ca55558d2d59bc1
MD5 73ef1c8021ae24970fdb109ac487265c
BLAKE2b-256 84b8b03e22815794fbb532b6e073d3717098cc6c3e373c434ef1b480852136b3

See more details on using hashes here.

File details

Details for the file finsight_data-1.0.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for finsight_data-1.0.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3833c40f712f0542e21f9ee44eb567771d7fe464469f8a917d15c8c6a4b0bb11
MD5 918dcf6e96f45d7295865cb581c32a87
BLAKE2b-256 0fa1ec61f6134df85a6fabdcc3ce43a9f3d9b5acb68415a1a089c8914d7b66ca

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page