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

> Retrieve detailed information about Violence Minecraft client products and their pricing to browse the available offerings. Look up specific product details to compare features and costs before making a purchase decision.

**Category:** E-commerce | **Website:** [violence.su/](https://violence.su/) | **Docs:** [parse.bot/marketplace/9f4b661c-661b-44ec-9ae7-004ebd619a54/violence-su-api](https://parse.bot/marketplace/9f4b661c-661b-44ec-9ae7-004ebd619a54/violence-su-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-violence-su-api-9f4b661c/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product

Retrieves a single product by its ID, including all pricing items (subscription tiers), feature lists, and visual presentation metadata. Returns input_not_found when the product does not exist.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_id` | string | Yes | The unique product identifier (e.g. 'free'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-violence-su-api-9f4b661c/get_product \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_id":"<string>"}'
```

### list_products

Lists all active products offered by the Violence Minecraft client, including pricing tiers, feature lists, and visual presentation metadata. Returns the full catalog in a single response.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-violence-su-api-9f4b661c/list_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
