# GAMEMAXXING Knowledge Base Search

> GAMEMAXXING Knowledge Base Search is a paid API for AI agents from gamemaxxing.baes.so, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Searches a curated video game knowledge base covering game design, game business, culture, and history, returning ranked JSON results with full content and source URLs.

## Facts

- Endpoint: POST https://gamemaxxing.baes.so/api/agent/v1/search
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gamemaxxing-baes-so-576997bd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fv60BIniQsan3gQGC7XtK

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability gamemaxxing-baes-so-576997bd -d '<json body>'
```

Example prompt: Search the GAMEMAXXING knowledge base for everything about roguelike game design mechanics and return the top 10 results with full content.

## When to prefer this

Use this endpoint when you need grounded, curated information specifically about video games, game design, game business, gaming culture, or gaming history — especially when you want ranked full-text results with citations rather than generating speculative answers.

## Known failure modes

- Query returns no results if topic is too niche or outside gaming domain
- Truncated response when result set is large (as seen in example)
- Rate limiting or payment failure if USDC balance is insufficient
- Malformed request if required fields like query are missing

## How this service works

Search GAMEMAXXING's video games and gaming knowledge base for game concepts across game design, game business, game culture, and gaming history, then return ranked JSON hits with full content first and source URLs second.

## Output

A ranked JSON array of hits from the GAMEMAXXING knowledge base, each containing full article content and source URLs, ordered by relevance to the query.

## Example request

```json
{
 "limit": 10,
 "query": "game design"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "maximum": 12,
   "minimum": 1,
   "description": "Maximum number of ranked concept hits to return."
  },
  "query": {
   "type": "string",
   "maxLength": 160,
   "minLength": 2,
   "description": "Natural-language game or video game query to run against GAMEMAXXING's concept corpus, including game design, game business, and game culture topics."
  },
  "offset": {
   "type": "integer",
   "maximum": 5000,
   "minimum": 0,
   "description": "Zero-based result offset for pagination. Start at 0, then send pageInfo.nextOffset while pageInfo.hasMore is true."
  },
  "category": {
   "enum": [
    "game-design",
    "game-mechanics",
    "gaming-history",
    "speedrunning",
    "esports",
    "graphics-tech",
    "game-audio",
    "narrative",
    "gaming-culture",
    "player-psychology",
    "game-business",
    "game-genres",
    "indie-games",
    "game-tech",
    "iconic-games",
    "action-adventure-games",
    "roguelike-games",
    "rpg-games",
    "shooter-games",
    "survival-crafting-games",
    "horror-games",
    "strategy-management-games",
    "simulation-games",
    "sports-racing-games",
    "fighting-brawler-games",
    "puzzle-platformer-games",
    "narrative-adventure-games",
    "card-board-games",
    "onchain-gaming",
    "game-consoles",
    "game-studios",
    "gaming-people",
    "game-engines",
    "gaming-characters",
    "pokemon-games"
   ],
   "type": "string",
   "description": "Optional GAMEMAXXING internal category slug used to narrow results to part of the GAMEMAXXING video game knowledge base."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gamemaxxing-baes-so-576997bd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gamemaxxing.baes.so](https://www.zero.xyz/host/gamemaxxing.baes.so/llms.txt)
