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

> Stay informed with real-time news from Sina.com.cn by retrieving article feeds organized by category and module, complete with titles, full content, and publication timestamps. Access comprehensive article details whenever you need to dive deeper into specific stories.

**Category:** News & Media | **Website:** [sina.com/](https://sina.com/) | **Docs:** [parse.bot/marketplace/31072528-708a-41d1-adf7-036b1c07d2b2/sina-com-api](https://parse.bot/marketplace/31072528-708a-41d1-adf7-036b1c07d2b2/sina-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-sina-com-api-31072528/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_article_detail

Fetch full article detail from a Sina article URL. Returns module (category/channel), title, full text content, and publish time. The article_url parameter comes from the url field in get_news_feed results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `article_url` | string | Yes | Full Sina article URL (from get_news_feed url field) |

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

### get_news_feed

Fetch a paginated news feed from Sina homepage recommendation. Returns articles with module (category), title, media source, publish time, thumbnail, and article URL. Use the returned url field with get_article_detail to fetch full content. Each call returns up to 50 articles.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Category filter for the feed. Use sina_all for all categories. |
| `limit` | integer | No | Number of articles to return per page. Clamped to 1-50. |
| `offset` | integer | No | Pagination offset. Start at 0 for the first page. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sina-com-api-31072528/get_news_feed \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","limit":"<integer>","offset":"<integer>"}'
```
