# Mmoga — 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 games and digital products across MMOGA.de to instantly retrieve current pricing information. Find the exact game you want and compare prices all in one seamless experience.

**Category:** Marketplaces | **Website:** [mmoga.de/](https://mmoga.de/) | **Docs:** [parse.bot/marketplace/54030233-9be4-4029-b48e-a26a24a8f855/mmoga-de-api](https://parse.bot/marketplace/54030233-9be4-4029-b48e-a26a24a8f855/mmoga-de-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-mmoga-de-api-54030233/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_games

Search for games and digital products on MMOGA by keyword. Returns paginated results with 20 items per page, including current price and original price (when discounted). Results are ordered by relevance as determined by the site.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for paginated results. Each page returns up to 20 items. |
| `query` | string | Yes | Search keyword(s) for finding games or digital products. |

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