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

> Track current and historical weekly Rust item store listings with complete details including images, prices, stats, and tags to plan your purchases and monitor price trends. Check specific store snapshots by ID to compare what items were available and priced at any point in time.

**Category:** Marketplaces | **Website:** [rusthelp.com/store](https://rusthelp.com/store) | **Docs:** [parse.bot/marketplace/dec97b71-98c2-4afa-b238-8122f8f19d08/rusthelp-com-api](https://parse.bot/marketplace/dec97b71-98c2-4afa-b238-8122f8f19d08/rusthelp-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-rusthelp-com-api-dec97b71/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_current_store

Returns the current (latest) weekly Rust item store with all items and store metadata. The store rotates weekly; calling this endpoint always returns the active store. Each item includes name, type, price, image URL, sales stats, acceptance time, and property tags.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-rusthelp-com-api-dec97b71/get_current_store \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_store_by_id

Returns a specific historical weekly Rust item store by its internal numeric ID. Store IDs can be discovered from the navigation tabs returned by get_current_store (the previous stores are linked). Each item includes name, type, price, image URL, sales stats, acceptance time, and property tags.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `store_id` | string | Yes | Numeric store ID (e.g. '1827'). Discoverable from the store navigation tabs. |

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