# Juejin — 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.

> Browse Juejin’s recommended article feed, search articles by keyword, and fetch full article details (including markdown/HTML content) by article ID.

**Category:** Developer Tools | **Website:** [juejin.cn/](https://juejin.cn/) | **Docs:** [parse.bot/marketplace/1528ece4-03b5-4d15-8ad7-ec9af77efb15/juejin-cn-api](https://parse.bot/marketplace/1528ece4-03b5-4d15-8ad7-ec9af77efb15/juejin-cn-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-juejin-cn-api-1528ece4/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_article

Get full article details including markdown content by article ID. Returns the complete article body, metadata, and author information. The content field contains the full markdown source; html_content may be null if the rendered HTML is unavailable.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `article_id` | string | Yes | Numeric article ID (e.g. "7584110439933100078"). Can be obtained from list_articles or search_articles results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-juejin-cn-api-1528ece4/get_article \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"article_id":"<string>"}'
```

### list_articles

Get a feed of recommended articles from Juejin. Returns paginated results sorted by recommendation algorithm. Each article includes basic metadata (title, author, tags, engagement counts). Use the cursor from a previous response to advance pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `cursor` | string | No | Pagination cursor returned from a previous call. Use "0" to start from the beginning. |
| `limit` | integer | No | Number of articles to return per page. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-juejin-cn-api-1528ece4/list_articles \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"cursor":"<string>","limit":"<integer>"}'
```

### search_articles

Search for articles on Juejin by keyword. Returns paginated search results ordered by relevance. Supports Chinese and English keywords. Each result includes the same metadata as list_articles.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `cursor` | string | No | Pagination cursor returned from a previous call. Use "0" to start from the beginning. |
| `limit` | integer | No | Number of articles to return per page. |
| `query` | string | Yes | Search keyword or phrase. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-juejin-cn-api-1528ece4/search_articles \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"cursor":"<string>","limit":"<integer>","query":"<string>"}'
```
