Memene API

开发文档
开发者控制台
memene-businessSchaeffler 企业定制订阅方案
memene-business

Schaeffler 企业定制订阅方案需要认证¥0.05/次

GET/v1/memene/business/schaeffler

接口说明

获取 Schaeffler 企业定制订阅方案的聚合内容数据。系统以预配置的订阅方案获取多源内容, 返回按平台分组的文章列表(含原文、AI 摘要等)。

时间参数:

  • startTime:可选,毫秒级时间戳字符串,默认当前时间 - 24h
  • endTime:可选,毫秒级时间戳字符串,默认当前时间
  • 不传时间参数时结果会被缓存 30 分钟

返回值: 按平台来源(如 wechat、twitter)分组的内容项对象。

错误说明:

HTTP 状态码含义
401API Key 无效
402余额不足
502上游服务暂时不可用

授权说明:

  • 需要提供有效的 API Key(Bearer Token)
  • 每次调用扣费 ¥0.05
请求头
参数类型必填说明
Authorizationstring

从 Memene API 开放平台获取的 API Key。是 Bearer Token 格式,例如:Bearer sk_memene_xxx_yyy。可以 点击此处 获取 API KEY

请求参数
参数类型必填说明
startTimestring

开始时间,毫秒级时间戳字符串。不传时默认当前时间 - 24h

endTimestring

结束时间,毫秒级时间戳字符串。不传时默认当前时间

响应结构
200

按平台来源分组的内容项对象

application/json
字段类型说明
[key: string]array
idnumber

内容数据库 ID

tagsstring

内容标签

authorstring

作者名称

sourceFromstring

来源平台,如 wechat、weibo

contentobject

文章正文结构

titlestring

文章标题

contentstring

文章原始正文(HTML)

uniqueIdstring

内容唯一标识

entryTimestring

入库时间,ISO 8601 格式

createTimestring

创建时间,ISO 8601 格式

authorSourceIdstring

作者数据源标识

processeContentstring

AI 处理后的文章内容(Markdown 格式)

elementarySummarystring

AI 生成的基础摘要

示例
json
{
  "wechat": [
    {
      "id": 100,
      "tags": "AI",
      "author": "示例公众号",
      "sourceFrom": "wechat",
      "content": {
        "title": "示例文章标题",
        "content": "<p>文章正文 HTML</p>"
      },
      "uniqueId": "unique-001",
      "entryTime": "2025-06-01T08:00:00Z",
      "createTime": "2025-06-01T07:30:00Z",
      "authorSourceId": "MP_WXS_001",
      "processeContent": "# 示例文章\n\nAI 处理后的 Markdown 正文",
      "elementarySummary": "这是一篇关于 AI 的示例文章摘要"
    }
  ]
}
401

Default Response

application/json
字段类型说明
errorstring
messagestring
示例
json
{
  "error": "Unauthorized",
  "message": "无效的 API Key"
}
402

Default Response

application/json
字段类型说明
errorstring
messagestring
示例
json
{
  "error": "Payment Required",
  "message": "余额不足"
}
502

Default Response

application/json
字段类型说明
errorstring
messagestring
示例
json
{
  "error": "Bad Gateway",
  "message": "上游服务暂时不可用"
}