GET
/
v1
/
summarizeByChapter
curl --request GET \
  --url https://api.bibigpt.co/api/v1/summarizeByChapter \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "id": "<string>",
  "service": "bilibili",
  "sourceUrl": "<string>",
  "htmlUrl": "<string>",
  "summary": "<string>",
  "costDuration": 123,
  "remainingTime": 123,
  "url": "<string>",
  "title": "<string>",
  "chapters": [
    {
      "start": 123,
      "end": 123,
      "text": "<string>",
      "contents": [
        [
          "<any>"
        ]
      ],
      "summary": "<string>",
      "title": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

url
string
required
outputLanguage
string

Response

200
application/json

Successful response

The response is of type object.