# Path of Exile — 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 updated with the latest Path of Exile news and announcements by retrieving current articles directly from the game. Get real-time access to official game updates, patches, and community alerts all in one place.

**Category:** News & Media | **Website:** [www.pathofexile.com/trade2/search/poe2/Runes%20of%20Aldur/rP7D3YLRtQ/live](https://www.pathofexile.com/trade2/search/poe2/Runes%20of%20Aldur/rP7D3YLRtQ/live) | **Docs:** [parse.bot/marketplace/e4628e1c-5b6f-4cf1-acf8-28573bbb54bd/pathofexile-com-api](https://parse.bot/marketplace/e4628e1c-5b6f-4cf1-acf8-28573bbb54bd/pathofexile-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-pathofexile-com-api-e4628e1c/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_latest_news

Fetch the latest news articles from Path of Exile. Returns articles in reverse chronological order with title, link, publication date, description, and category. Results are sourced from the official RSS feed and auto-iterated as a single page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of articles to return. The RSS feed contains up to ~28 articles. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-pathofexile-com-api-e4628e1c/get_latest_news \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>"}'
```
