# Genshin — 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 detailed information about Genshin Impact characters including their talents, constellations, builds, and stats, plus browse the complete character roster. Find everything you need to plan your team composition and optimize character development.

**Category:** Entertainment | **Website:** [genshin.gg/](https://genshin.gg/) | **Docs:** [parse.bot/marketplace/2f8b32b3-c527-4b96-9998-15728fc2d9ce/genshin-gg-api](https://parse.bot/marketplace/2f8b32b3-c527-4b96-9998-15728fc2d9ce/genshin-gg-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-genshin-gg-api-2f8b32b3/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_character_details

Fetch the full build guide and ability reference for a single character. Includes element, weapon type, role classification, talents (normal/skill/burst), passive talents, constellations, recommended weapons (ranked), recommended artifact sets (ranked with piece counts), optimal artifact main-stats and substats priority, team compositions with members, ascension materials, and level-up cost table. The slug identifier comes from get_character_list.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | The unique slug for the character, as returned by get_character_list in characters[*].slug (e.g. 'albedo', 'alhaitham', 'ayaka'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-genshin-gg-api-2f8b32b3/get_character_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_character_list

Retrieve the complete roster of playable Genshin Impact characters with basic metadata. Returns name, slug, star rarity, and icon URL for every character. No filtering or pagination — the full list is returned in one call. Use a character's slug to fetch their full build details via get_character_details.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-genshin-gg-api-2f8b32b3/get_character_list \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
