# Suverse Pokemon Move Stats

> Suverse Pokemon Move Stats is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.055/call, status unknown (last checked 2026-09-15).

Returns battle statistics for a named Pokémon move including power, PP, accuracy, elemental type, and damage class (physical/special/status), backed by PokeAPI.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-pokemon-move
- Price: $0.055/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-pokemon-move-stats-d11f99a9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_49WUWS9urcG5gWGiZkECJ

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 suverse-pokemon-move-stats-d11f99a9 -d '<json body>'
```

Example prompt: What are the battle stats for flamethrower — its power, accuracy, PP, type, and whether it's physical or special?

## When to prefer this

Use this endpoint when you need structured battle statistics for a specific Pokémon move by slug. It is the right choice for game data enrichment, competitive analysis, trivia apps, or Pokédex-style tools. Prefer it over scraping fan wikis or querying raw PokeAPI directly, since it provides a simple paid proxy with no API key management required.

## Known failure modes

- Unknown move slug returns an error or empty result
- Misspelled move name may fail to match (slugs are hyphen-separated lowercase, e.g. 'fire-blast' not 'Fire Blast')
- PokeAPI upstream downtime causes service unavailability
- Non-move entity names (e.g. Pokémon names) will return no data

## How this service works

Get the battle stats of any Pokemon move: power, PP, accuracy, elemental type and damage class (physical/special/status). Backed by PokeAPI. Pass a move slug like flamethrower.

## Output

Returns structured battle data for the requested Pokémon move, including: base power (integer or null for status moves), PP (power points), accuracy (percentage integer or null), elemental type (e.g. fire, water, electric), and damage class (physical, special, or status).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/suverse-pokemon-move-stats-d11f99a9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
