# Reuters — 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 data from reuters.com.

**Category:** News & Media | **Website:** [www.reuters.com/](https://www.reuters.com/) | **Docs:** [parse.bot/marketplace/30d58621-1acb-4496-bce0-3cc09bd616bc/reuters-com-api](https://parse.bot/marketplace/30d58621-1acb-4496-bce0-3cc09bd616bc/reuters-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-reuters-com-api-30d58621/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_article

Retrieve full article details including body content by canonical URL path. Returns article metadata, authors, and available body paragraphs. Metered/premium articles may have limited body content.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `article_url` | string | Yes | Canonical URL path of the article (e.g. /technology/doge-alumni-launch-military-cyber-startup-with-14-billion-valuation-2026-07-22/). Obtainable from search_news or get_section_news results. |

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

### get_section_news

Retrieve the latest articles from a specific Reuters section (e.g. /world/, /business/, /technology/). Returns article summaries ordered by publication date (newest first). Results are paginated via offset.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `offset` | integer | No | Number of articles to skip for pagination. |
| `section_id` | string | No | Section path with leading and trailing slashes (e.g. /world/, /business/, /technology/, /markets/, /sustainability/). |
| `size` | integer | No | Number of articles to return per request (max 100). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-reuters-com-api-30d58621/get_section_news \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"offset":"<integer>","section_id":"<string>","size":"<integer>"}'
```

### search_news

Full-text search across Reuters articles ordered by publication date (newest first). Returns article summaries with metadata. Results are paginated via offset.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `keyword` | string | Yes | Search query text to match against article titles and content. |
| `offset` | integer | No | Number of articles to skip for pagination. |
| `size` | integer | No | Number of articles to return per request (max 100). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-reuters-com-api-30d58621/search_news \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"keyword":"<string>","offset":"<integer>","size":"<integer>"}'
```
