1. 获取文章
实战AI小模型
  • 实战小模型API-KEY
    • 生文
      • 自定义生文
      • 空间生文
    • 参数获取
      • 获取平台列表
      • 获取[用户]空间列表
    • 获取文章
      • 查看文章生成状态
        GET
      • 根据文章ID获取内容和标题
        GET
      • 根据平台code获取文章列表
        GET
  1. 获取文章

根据平台code获取文章列表

开发中
GET
/bj/v1/article/getArticleListByPlatform

请求参数

Query 参数

Header 参数

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET '/bj/v1/article/getArticleListByPlatform?platformCode=gzh&current=1&size=2' \
--header 'X-API-KEY: {{$string.uuid}}'

返回响应

🟢200成功
application/json
Body

示例
{
    "code": 200,
    "message": "SUCCESS",
    "data": {
        "records": [
            {
                "id": 29239764224,
                "userId": null,
                "content": null,
                "title": "俄乌战争",
                "digest": null,
                "coverUrl": null,
                "createTime": "2025-07-09T08:48:18.000+00:00",
                "wordCount": 1326,
                "spaceName": "",
                "status": 3,
                "deletedAt": null,
                "tags": []
            },
            {
                "id": 29235239424,
                "userId": null,
                "content": null,
                "title": "日本末日丑闻",
                "digest": null,
                "coverUrl": null,
                "createTime": "2025-07-09T07:17:12.000+00:00",
                "wordCount": 737,
                "spaceName": "",
                "status": 3,
                "deletedAt": null,
                "tags": []
            }
        ],
        "total": 188,
        "size": 2,
        "current": 1,
        "pages": 94
    }
}
修改于 2025-10-05 14:11:20
上一页
根据文章ID获取内容和标题
Built with