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

> Access the latest AI articles, detailed content, and state-of-the-art (SOTA) AI project information from Jiqizhixin, including the ability to browse article lists, search specific projects, and discover trending content from the homepage feed. Stay updated on cutting-edge artificial intelligence research and developments with comprehensive project details and in-depth article coverage.

**Category:** News & Media | **Website:** [jiqizhixin.com/](https://jiqizhixin.com/) | **Docs:** [parse.bot/marketplace/87f4fa6b-8efb-4400-9185-50e0b0d39cdb/jiqizhixin-com-api](https://parse.bot/marketplace/87f4fa6b-8efb-4400-9185-50e0b0d39cdb/jiqizhixin-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-jiqizhixin-com-api-87f4fa6b/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_article_detail

Fetch the full content of a single article by its URL slug. Returns article title, author info (id, avatar URL, name), full HTML body, and publication timestamp. The slug is obtainable from get_article_list results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Article URL slug (e.g. '2026-06-10-13'). Obtainable from get_article_list results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-jiqizhixin-com-api-87f4fa6b/get_article_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_article_list

Fetch a paginated list of articles from the article library, ordered by publication time. Each article includes title, slug, category, tags, author name, publication date, cover image URL, and a content preview. Paginate by incrementing `page`; total available count is returned for client-side page-count math.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number (1-based). |
| `per` | integer | No | Results per page. |
| `sort` | string | No | Sort order. Accepted value: 'time'. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-jiqizhixin-com-api-87f4fa6b/get_article_list \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","per":"<integer>","sort":"<string>"}'
```

### get_homepage_feed

Fetch the latest article feed from the homepage with default parameters (page 1, 20 per page, sorted by time). Returns the same shape as get_article_list. A convenience endpoint that requires no parameters.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-jiqizhixin-com-api-87f4fa6b/get_homepage_feed \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_sota_project_detail

Fetch full details of a specific SOTA project by its slug. Returns the complete project description (markdown), tech tags, category, status, team info, community stats, star counts, and chat session info.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Project slug (e.g. 'rgbt-clothing'). Obtainable from get_sota_project_list or search_sota_projects results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-jiqizhixin-com-api-87f4fa6b/get_sota_project_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_sota_project_list

Fetch a paginated list of open-source AI projects from the SOTA section. Each entry contains project name, slug, summary, category tags, tech tags, star counts, and generation timestamp. Paginate by incrementing `page`.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Category filter. Omitting or passing empty string returns all categories. |
| `order` | string | No | Sort order field. Accepted value: 'generationAt'. |
| `page` | integer | No | Page number (1-based). |
| `per` | integer | No | Results per page. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-jiqizhixin-com-api-87f4fa6b/get_sota_project_list \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","order":"<string>","page":"<integer>","per":"<integer>"}'
```

### search_sota_projects

Search for SOTA projects by keyword. Returns matching term entries with id (usable as slug for get_sota_project_detail) and name. Useful for discovery before fetching full project details.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search keyword (e.g. 'language model'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-jiqizhixin-com-api-87f4fa6b/search_sota_projects \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
