Wikipedia
Integuru provides a production-ready HTTP API for structured Wikipedia lookups, covering 2 actions for Generation III Pokémon type data and battle simulation. Each action returns a documented response shape including types, matchup data, and battle outcomes.
Last reviewed: July 2026
Overview
Integuru's Wikipedia integration provides production-ready HTTP API access to structured Pokémon data from Wikipedia, covering 2 actions: get_pokemon_type and pokemon_battle. Both actions are scoped to Generation III Pokémon and return documented response shapes. get_pokemon_type returns type data, strength matchups, and recommended moves. pokemon_battle simulates a battle between two Pokémon and returns the winner, turn count, per-Pokémon data, and a full battle log. Integuru connects via direct HTTP requests, so calls complete in under 3 seconds with a 99.9%+ success rate.
The two actions cover Pokémon type lookup and battle simulation using structured data sourced from Wikipedia. See the full integrations catalogue for other reference and data integrations.
Use Cases
Integuru's Wikipedia integration covers structured Pokémon data lookup and battle simulation for Generation III Pokémon.
- Pokémon type lookup: Call
get_pokemon_typewith a requiredpokemon_namestring to retrieve the Pokémon's types (array), strength matchups viastrong_against(array), andrecommended_moves(array), along with thepokemonname field in the response. - Pokémon battle simulation: Call
pokemon_battlewith requiredpokemon1andpokemon2name strings to simulate a battle. The response returnswinner(string),turns(integer),battle_log(array of turn-by-turn events), andpokemon1/pokemon2data objects.
Setup Notes
Integuru's Wikipedia integration authenticates against https://www.wikipedia.org/. Configure credentials once during Integuru setup; Integuru handles session management automatically.
get_pokemon_type requires pokemon_name. pokemon_battle requires both pokemon1 and pokemon2. Both actions are scoped to Generation III Pokémon. Return shapes are fully documented: get_pokemon_type returns types, pokemon, strong_against, and recommended_moves; pokemon_battle returns turns, winner, pokemon1, pokemon2, and battle_log.