跳转到主要内容
GET
/
v1
/
feed
Latest videos across all subscribed channels (live RSS)
curl --request GET \
  --url https://api.bibigpt.co/api/v1/feed \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "contentId": "<string>",
      "channelId": "<string>",
      "channelTitle": "<string>",
      "title": "<string>",
      "sourceUrl": "<string>",
      "coverUrl": "<string>",
      "duration": "<string>",
      "publishedAt": "<string>",
      "isUnseen": true
    }
  ],
  "failedChannels": [
    {
      "channelId": "<string>",
      "channelTitle": "<string>",
      "channelUrl": "<string>",
      "message": "<string>"
    }
  ],
  "nextCursor": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.bibigpt.co/llms.txt

Use this file to discover all available pages before exploring further.

授权

Authorization
string
header
必填

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

查询参数

since
string
limit
integer
默认值:20
必填范围: 1 <= x <= 50
cursor
string

响应

Successful response

items
object[]
必填
failedChannels
object[]
必填
nextCursor
string | null
必填