# Eldenring Wiki Fextralife — 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.

> Search and retrieve structured Elden Ring game information from the Fextralife Wiki, including weapons, enemies, locations, and lore. Access full article content with hierarchical sections, tables, and images, or search the complete article catalog by keyword.

**Category:** Entertainment | **Website:** [eldenring.wiki.fextralife.com/](https://eldenring.wiki.fextralife.com/) | **Docs:** [parse.bot/marketplace/f97a6163-55ff-422c-a41a-48913fdf939a/eldenring-wiki-fextralife-com-api](https://parse.bot/marketplace/f97a6163-55ff-422c-a41a-48913fdf939a/eldenring-wiki-fextralife-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-eldenring-wiki-fextralife-com-api-f97a6163/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_article

Get detailed structured content of a specific article. Returns the article broken into hierarchical sections with text, tables, images, and lists. Each section has a title, heading level, and an array of typed content items.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `path` | string | Yes | The article path as it appears in the wiki URL. Use '+' for spaces (e.g. 'Malenia+Blade+of+Miquella'). Obtain from list_articles or search_articles results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-eldenring-wiki-fextralife-com-api-f97a6163/get_article \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"path":"<string>"}'
```

### list_articles

List all articles from the wiki via sitemap, with pagination. Returns article titles, paths, and URLs. The full wiki contains thousands of articles; use limit and offset to page through them.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Max number of articles to return per page. |
| `offset` | integer | No | Number of articles to skip for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-eldenring-wiki-fextralife-com-api-f97a6163/list_articles \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","offset":"<integer>"}'
```

### search_articles

Search for articles by keyword match in the title. Returns up to 50 matching results. The search is case-insensitive and matches any substring of the article title.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search keyword to match against article titles (case-insensitive). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-eldenring-wiki-fextralife-com-api-f97a6163/search_articles \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
