# Steam Assiw — 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.

> Access detailed Steam depot information including depot IDs, keys, and manifest IDs for any Steam application. Retrieve this technical data to manage game installations, analyze Steam's file structure, or integrate Steam app details into your applications.

**Category:** Developer Tools | **Website:** [steam.assiw.xyz/#/](https://steam.assiw.xyz/#/) | **Docs:** [parse.bot/marketplace/8a8afb37-e6b3-4330-b12a-40c038fe7e81/steam-assiw-xyz-api](https://parse.bot/marketplace/8a8afb37-e6b3-4330-b12a-40c038fe7e81/steam-assiw-xyz-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-steam-assiw-xyz-api-8a8afb37/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_depot_info

Returns depot IDs, depot decryption keys, and manifest IDs for a Steam application. The endpoint authenticates, downloads the manifest data, and parses the embedded lua script to extract depot information. Each depot entry includes the depot ID, its decryption key, and an optional manifest ID. The first depot typically shares the app ID and has no manifest ID. Returns input_not_found when the app ID is not in the service's catalog.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `app_id` | string | Yes | Numeric Steam App ID (e.g. '4000' for Garry's Mod, '730' for Counter-Strike 2). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-steam-assiw-xyz-api-8a8afb37/get_depot_info \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"app_id":"<string>"}'
```
