https://github.com/jacoblincool/myself-bbs-api
myself-bbs.com JSON API
https://github.com/jacoblincool/myself-bbs-api
Last synced: 4 months ago
JSON representation
myself-bbs.com JSON API
- Host: GitHub
- URL: https://github.com/jacoblincool/myself-bbs-api
- Owner: JacobLinCool
- License: mit
- Created: 2021-06-30T06:46:00.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-04-16T08:16:38.000Z (about 2 years ago)
- Last Synced: 2024-04-23T14:05:29.623Z (about 2 years ago)
- Language: JavaScript
- Size: 156 MB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Myself-BBS API
myself-bbs.com JSON API
# Endpoints
```bash
https://myself-bbs.jacob.workers.dev/
```
## List
### 連載列表
```bash
https://myself-bbs.jacob.workers.dev/list/airing
```
### 完結列表
```bash
https://myself-bbs.jacob.workers.dev/list/completed
```
Response Example
```javascript
{
"data": {
"meta": {
"time": 1630391759999, // 快取時間
"length": 1753 // 物件數量
},
"data": [
{
"id": 12345, // 站內 ID
"title": "TITLE", // 作品名稱
"link": "myself-bbs.com link url", // 站內連結
"ep": 12, // 集數
"image": "half cover image url", // 上半封面連結
"watch": 148111 // 觀看數
},
...
]
}
```
## Anime
### 特定動畫資訊
```bash
https://myself-bbs.jacob.workers.dev/anime/${id}
```
Response Example
```javascript
{
"data": {
"id": 12345,
"title": "TITLE",
"category": [
"科幻",
"冒險"
],
"premiere": [
2010,
6,
12
],
"ep": 1,
"author": "Author",
"website": "website link",
"description": "Description",
"image": "cover image url",
"episodes": {
"第 01 話": [
"12345",
"001"
]
}
}
}
```
### 全部動畫資訊
```bash
https://myself-bbs.jacob.workers.dev/anime/all
```
## Search
```bash
https://myself-bbs.jacob.workers.dev/search/${query}
```
## M3U8
```bash
https://myself-bbs.jacob.workers.dev/m3u8/${id}/${ep}
```
# Optional Query String
minify output json:
```
?min=1
```