# Suverse Pokemon Ability Lookup

> Suverse Pokemon Ability Lookup 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).

Look up a Pokemon ability by slug name to retrieve its numeric ID, main-series flag, and full effect description, powered by PokeAPI.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-pokemon-ability
- 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-ability-lookup-30c12e97
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mOABdc4VG9HH-kYnL_tSw

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-ability-lookup-30c12e97 -d '<json body>'
```

Example prompt: What does the Pokemon ability 'blaze' do — can you look it up and give me its ID, whether it's in the main series, and the full effect description?

## When to prefer this

Choose this endpoint when you need structured Pokemon ability metadata (ID, main-series flag, effect description) without managing a PokeAPI key yourself. Ideal for agents building Pokemon-related tools, trivia apps, or team builders that need reliable ability lookups with a simple per-call payment model.

## Known failure modes

- Unknown ability slug returns an error or empty result — ability names must be valid PokeAPI slugs (e.g. 'blaze', not 'Blaze' or 'BLAZE')
- Misspelled or nonexistent ability slugs will fail to resolve
- Payment of 0.055 USDC required per call via x402 — missing payment results in 402 response
- Upstream PokeAPI downtime may cause intermittent failures

## How this service works

Look up a Pokemon ability by name and get its id, main-series flag and effect description. Backed by PokeAPI. Pass an ability slug like blaze or overgrow.

## Output

Returns a JSON object containing the ability's numeric ID, a boolean main-series flag indicating whether it appears in the main Pokemon game series, and a full text description of the ability's effect.

## 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-ability-lookup-30c12e97/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)
