# Steamcharts — 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 player counts and trending games on Steam, search for specific titles, and view historical statistics for individual games. Monitor which games are gaining popularity and get detailed player data to stay informed about the gaming landscape.

**Category:** Entertainment | **Website:** [steamcharts.com/](https://steamcharts.com/) | **Docs:** [parse.bot/marketplace/c33c46ab-3bbb-47c7-a6f2-2950e9900b7c/steamcharts-com-api](https://parse.bot/marketplace/c33c46ab-3bbb-47c7-a6f2-2950e9900b7c/steamcharts-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-steamcharts-com-api-c33c46ab/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_game_details

Retrieves full statistics and monthly historical player data for one game identified by its Steam App ID. Includes current player count, 24-hour peak, all-time peak, and a month-by-month history of average players, gain/loss, and peak players.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `appid` | string | Yes | Steam App ID (numeric string, e.g. '730' for Counter-Strike 2, '570' for Dota 2). |

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

### get_homepage

Fetches the SteamCharts homepage to retrieve currently trending games (ranked by 24-hour percentage gain) and a summary of top games by current player count. Returns both lists in a single call; no pagination.

**Estimated cost:** Metered

_No parameters required._

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

### get_top_games

Retrieves the paginated leaderboard of games ranked by current player count. Each page contains 25 games. Page numbering starts at 1.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination, starting at 1. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-steamcharts-com-api-c33c46ab/get_top_games \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>"}'
```

### search_games

Searches for games by name on SteamCharts. Returns all matching results with current player counts. Results are not paginated; the full match set is returned.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search keyword to find games by name. |

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