Back to Integrations
Reference & Knowledge

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_type with a required pokemon_name string to retrieve the Pokémon's types (array), strength matchups via strong_against (array), and recommended_moves (array), along with the pokemon name field in the response.
  • Pokémon battle simulation: Call pokemon_battle with required pokemon1 and pokemon2 name strings to simulate a battle. The response returns winner (string), turns (integer), battle_log (array of turn-by-turn events), and pokemon1/pokemon2 data 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.

Available Actions

Click an action to expand its parameters