Catalog/misc-pokemon

Data

Pokemon stats, types & abilities (PokeAPI) API

Look up a Pokemon by name or id from PokeAPI (pokeapi.co): base stats, types, abilities (incl. hidden), height/weight, base experience, and sprites. Answers 'stats for Pikachu','what type is Charizard','Bulbasaur's abilities','how tall is Snorlax'.

Price$0.01per request
MethodPOST
Route/v1/data/misc-pokemon
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache86400s public
datapokemonpokeapistatstypesabilitiesgamenintendo
API URLhttps://x402.hexl.dev/v1/data/misc-pokemon
Integration docs
Example request
{
  "name": "pikachu"
}
Example response
{
  "id": 25,
  "name": "pikachu",
  "heightMeters": 0.4,
  "weightKg": 6,
  "baseExperience": 112,
  "types": [
    "electric"
  ],
  "abilities": [
    {
      "name": "static",
      "hidden": false
    },
    {
      "name": "lightning-rod",
      "hidden": true
    }
  ],
  "stats": {
    "hp": 35,
    "attack": 55,
    "defense": 40,
    "special-attack": 50,
    "special-defense": 50,
    "speed": 90
  },
  "statTotal": 320,
  "sprite": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/25.png",
  "artwork": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/other/official-artwork/25.png"
}
Input schema
{
  "type": "object",
  "required": [],
  "properties": {
    "name": {
      "type": "string",
      "examples": [
        "pikachu"
      ]
    },
    "id": {
      "type": "number",
      "examples": [
        25
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}