# Riftbound Leagueoflegends — 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.

> Browse and search the complete Riftbound TCG card collection with detailed information including set details, effect text, energy cost, power cost, might ratings, and collector numbers. Access comprehensive card data from the official gallery to find specific cards or explore the full catalog.

**Category:** Entertainment | **Website:** [riftbound.leagueoflegends.com/en-us/card-gallery/](https://riftbound.leagueoflegends.com/en-us/card-gallery/) | **Docs:** [parse.bot/marketplace/89ab3e83-11d4-482b-bad1-7d5f88b0f5f1/riftbound-leagueoflegends-com-api](https://parse.bot/marketplace/89ab3e83-11d4-482b-bad1-7d5f88b0f5f1/riftbound-leagueoflegends-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-riftbound-leagueoflegends-com-api-89ab3e83/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_cards

Get all Riftbound TCG cards with their stats. Returns card name, set, effect text, energy cost, power, might, and collector number. Supports filtering by set name and card name with partial matching, and limiting the number of results returned. When no filters are provided, returns all cards in the gallery. Pagination is not supported — the full matching set is returned in one response.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of cards to return. 0 returns all matching cards. |
| `name` | string | No | Filter by card name using partial match (case-insensitive). |
| `set` | string | No | Filter by set name using partial match (case-insensitive). Known sets: 'Unleashed', 'Origins', 'Spiritforged', 'Proving Grounds'. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-riftbound-leagueoflegends-com-api-89ab3e83/get_cards \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","name":"<string>","set":"<string>"}'
```
