# DeltaForceApi **Repository Path**: orzice/DeltaForceApi ## Basic Information - **Project Name**: DeltaForceApi - **Description**: 三角洲数据帝API- 实时物品价格 | 实时卡战备 | 制造利润 | 今日密码 | 改枪码大全 | 每日补卡 | 物品价格曲线 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: https://github.com/orzice/DeltaForceApi - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-06-05 - **Last Updated**: 2026-06-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # DeltaForceApi 三角洲数据帝开放平台 API SDK,提供 Python / Go / PHP 三种语言的请求封装。

开放平台  ·  orzice.com/work   |   API 文档  ·  work-api.apifox.cn   |   QQ 群  ·  791785919

--- ## 安装 #### **Python** ```bash pip install requests ``` 将 `python/` 目录加入 `PYTHONPATH`,或直接复制到项目中。 #### **Go** ```bash go get github.com/orzice/DeltaForceApi/go/deltaforce ``` #### **PHP** 将 `php/Client.php` 复制到项目中 `require` 即可,依赖 cURL 扩展。 ## 快速开始 三种语言 API 风格一致:配置类变量 `TOKEN`,调用 `get()` / `post()`。 **Python** ```python from deltaforce import DeltaForceClient DeltaForceClient.TOKEN = "your_token" client = DeltaForceClient() data = client.get("/v1/sjz_api/item_info_all") data = client.get("/v1/sjz_api/item_list", {"types": "acc", "limit": 10}) ``` **Go** ```go import "github.com/orzice/DeltaForceApi/go/deltaforce" deltaforce.Token = "your_token" client := deltaforce.NewClient(30 * time.Second) resp, _ := client.Get("/v1/sjz_api/item_info_all", nil) resp, _ := client.Get("/v1/sjz_api/item_list", map[string]string{ "types": "acc", "limit": "10", }) ``` **PHP** ```php require 'Client.php'; DeltaForceClient::$TOKEN = 'your_token'; $client = new DeltaForceClient(); $data = $client->get('/v1/sjz_api/item_info_all'); $data = $client->get('/v1/sjz_api/item_list', ['types' => 'acc', 'limit' => 10]); ``` ## API 接口 | 模块 | 说明 | |:---|:---| | 基础接口 | 全物品基础信息、最新价格、今日密码、改枪码 | | 鼠鼠卡战备 | 实时卡战备 V3 / V4、假账排行榜、DIY 自定义凑战备 | | 实时交易行 | 全物品列表 / Top 排行、价格曲线(分钟 / 小时 / 天) | | 军需处兑换 + 制造 | 兑换成本、子弹收益、制造利润 | | 数据分析 | 钥匙卡预测、子弹分析 | > 完整接口路径与参数参考 [`llms.txt`](llms.txt) 或 [线上 API 文档](https://work-api.apifox.cn) ## 通用设计 | 特性 | 说明 | |:---|:---| | 配置 | `TOKEN` / `BASE_URL` 为静态变量,配置一次全局生效 | | 鉴权 | `get()` 自动注入 `TOKEN` | | 错误 | 404 抛出"无权限访问" | | UA | `DeltaForceApi/1.0` | | 依赖 | Python 仅 `requests`,Go / PHP 零外部依赖 |