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

> Get Escape from Tarkov ammunition stats (damage, penetration, armor damage, modifiers) and wipe-length history with computed durations and averages from tarkov.dev.

**Category:** Entertainment | **Website:** [tarkov.dev/](https://tarkov.dev/) | **Docs:** [parse.bot/marketplace/8ebbb6b9-8d94-4443-ab1b-777762915aa4/tarkov-dev-api](https://parse.bot/marketplace/8ebbb6b9-8d94-4443-ab1b-777762915aa4/tarkov-dev-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-tarkov-dev-api-8ebbb6b9/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_ammo

Retrieve all ammunition types and their ballistic statistics from the Tarkov.dev GraphQL API. Returns every round in the game with damage, penetration power, armor damage percentage, caliber, muzzle velocity, fragmentation chance, bleed modifiers, and recoil/accuracy modifiers. No parameters — the full ammo table is returned in one call.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-tarkov-dev-api-8ebbb6b9/get_ammo \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_wipe_info

Retrieve historical wipe cycle data for Escape from Tarkov. Returns every known wipe with its patch version, start date, end date (or 'Ongoing wipe' for the current cycle), and duration in days. Also computes the average wipe length from the last 6 completed wipes. Useful for estimating the next wipe window.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-tarkov-dev-api-8ebbb6b9/get_wipe_info \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
