# Challenges Darkintaqt — 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 League of Legends challenges by name or description to quickly find specific in-game objectives and track your progress toward completing them. Browse detailed information about each challenge to plan your gameplay strategy and discover new goals to pursue.

**Category:** Sports | **Website:** [challenges.darkintaqt.com/challenge/510001](https://challenges.darkintaqt.com/challenge/510001) | **Docs:** [parse.bot/marketplace/a1e1fbe4-304a-4a00-b84f-b42e4d02c060/challenges-darkintaqt-com-api](https://parse.bot/marketplace/a1e1fbe4-304a-4a00-b84f-b42e4d02c060/challenges-darkintaqt-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-challenges-darkintaqt-com-api-a1e1fbe4/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_challenges

Search League of Legends challenges by matching a query against challenge names and descriptions. Returns all challenges whose name, description, or short description contain the query string (case-insensitive). Results include threshold tiers, player percentiles, and metadata. An empty result set is valid when no challenge matches the query.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search term matched case-insensitively against challenge name, description, and short description. |
| `region` | string | No | Riot region code for challenge data (e.g. euw1, na1, kr, br1, jp1, eun1, la1, la2, oc1, ru, tr1, ph2, sg2, th2, tw2, vn2). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-challenges-darkintaqt-com-api-a1e1fbe4/search_challenges \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>","region":"<string>"}'
```
