# Space Bilibili — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Retrieve and browse videos from any Bilibili user channel with customizable sorting, filtering, and pagination options. Organize your video discovery by applying specific criteria to find exactly the content you're looking for.

**Category:** Streaming Video | **Website:** [space.bilibili.com/261168118/upload/video](https://space.bilibili.com/261168118/upload/video) | **Docs:** [parse.bot/marketplace/b01c84d7-dc3b-40e4-a8fc-bae02a0c8e12/space-bilibili-com-api](https://parse.bot/marketplace/b01c84d7-dc3b-40e4-a8fc-bae02a0c8e12/space-bilibili-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-space-bilibili-com-api-b01c84d7/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_channel_videos

Fetches the paginated video list for a Bilibili channel (user space). Returns video metadata including title, description, thumbnail, duration, view/comment/danmaku counts, and publish timestamp. Also returns the channel's video category breakdown. Sorted by publish date by default; supports sorting by play count or favorites. Each call makes up to 8 upstream requests (session warmup + signed API call with one retry). Pagination is caller-controlled via page and page_size; total video count is returned in the response.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `keyword` | string | No | Search keyword to filter videos within this channel. Omitted returns all videos. |
| `mid` | string | Yes | Bilibili user/channel numeric ID (e.g. '261168118'). |
| `order` | string | No | Sort order for videos. Omitted defaults to pubdate (newest first). |
| `page` | integer | No | Page number for pagination (1-indexed). |
| `page_size` | integer | No | Number of videos per page (1-50). |
| `tid` | string | No | Category/type ID to filter videos. Use '0' for all categories. Category IDs are returned in the categories field of the response. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-space-bilibili-com-api-b01c84d7/get_channel_videos \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"keyword":"<string>","mid":"<string>","order":"<string>","page":"<integer>","page_size":"<integer>","tid":"<string>"}'
```
