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

> Search for Twitch streamers and channels, view their profiles and streaming details, and discover live streams organized by category. Find the content and creators you want to watch all in one place.

**Category:** Streaming Video | **Website:** [www.twitch.tv/directory/category/pokemon-pokopia](https://www.twitch.tv/directory/category/pokemon-pokopia) | **Docs:** [parse.bot/marketplace/b6ea207b-7e6b-43c9-a387-d1af6953a591/twitch-tv-api](https://parse.bot/marketplace/b6ea207b-7e6b-43c9-a387-d1af6953a591/twitch-tv-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-twitch-tv-api-b6ea207b/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_live_streams

Get currently live streams, optionally filtered by game/category. Returns streams sorted by relevance or viewer count with broadcaster info, game details, and tags. Supports pagination via cursor.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Game/category slug (e.g., 'just-chatting', 'fortnite', 'league-of-legends'). If omitted or empty, returns top streams across all categories. |
| `limit` | integer | No | Number of streams to return (1-100) |
| `sort` | string | No | Sort order for streams. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-twitch-tv-api-b6ea207b/get_live_streams \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","limit":"<integer>","sort":"<string>"}'
```

### get_streamer_profile

Get detailed profile information for a Twitch streamer including followers, description, partner status, social links, and current live stream details if streaming. Returns null for stream when offline and populates last_broadcast with the most recent game played.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `username` | string | Yes | Twitch username/login (e.g., 'ninja', 'shroud') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-twitch-tv-api-b6ea207b/get_streamer_profile \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"username":"<string>"}'
```

### search_streamers

Search for Twitch channels/streamers by query. Returns matching channels with live status, follower counts, and current stream info. Searches across channel names, stream titles, and game names.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search query (channel name, game name, or keywords) |

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