# Warframe — 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 for Warframe items and weapons to view their stats, crafting requirements, and mod information, while staying updated on current in-game events and patch notes. Get detailed information about gear, resources, and game updates all from one convenient source.

**Category:** Entertainment | **Website:** [warframe.wiki/](https://warframe.wiki/) | **Docs:** [parse.bot/marketplace/845e96ff-c049-4be1-a971-380ad5b85cf6/warframe-wiki-api](https://parse.bot/marketplace/845e96ff-c049-4be1-a971-380ad5b85cf6/warframe-wiki-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-warframe-wiki-api-845e96ff/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_augment_details

Retrieve detailed information about a Warframe augment mod by its exact wiki page title. Returns the augment's description, associated Warframe and ability, polarity, rarity, and per-rank stats (drain cost and effect values). The effect columns vary per augment (e.g. 'Damage Reduction', '% of effects'). Returns input_not_found when the page does not exist.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `name` | string | Yes | Exact augment mod name matching the wiki page title (e.g. 'Tribunal', 'Warding Thurible', 'Seeking Shuriken') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-warframe-wiki-api-845e96ff/get_augment_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"name":"<string>"}'
```

### get_events

Retrieve information about current event indicators and recent event/operation pages from the Warframe Wiki. Checks the main wiki page for active event references (such as Nightwave) and searches for operation/event pages. The current_indicators array may be empty when no events are detected on the main page.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-warframe-wiki-api-845e96ff/get_events \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_item_details

Retrieve detailed statistics and crafting requirements for a specific item by its exact wiki page title. Stats come from the page infobox (abilities, health, armor, sprint speed, etc.). Crafting data includes blueprint cost, credits, build time, and component parts when the item is craftable. Returns input_not_found when the page does not exist.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `name` | string | Yes | Exact item name matching the wiki page title (e.g. 'Excalibur', 'Braton', 'Rhino Prime') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-warframe-wiki-api-845e96ff/get_item_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"name":"<string>"}'
```

### get_update_notes

Retrieve recent update notes and patch pages from the Warframe Wiki Updates category, sorted by most recent first. Returns page titles and IDs for each update entry.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of update entries to return (1-50) |

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

### search_items

Full-text search across all Warframe Wiki pages (Warframes, Weapons, Mods, etc.) by name or keyword. Returns up to 10 matching results. Each result carries a title usable as the `name` parameter to get_item_details.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Item name or keyword to search for |

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