getPokemon
Examples
Get All Pokémon
import { getPokemon } from '@pokebag/data-sdk'
async function getAllPokemons() {
const pokemon = await getPokemon()
console.log(pokemon)
}
getAllPokemons()
// Logs an array with data for all PokémonGet Specific Pokémon
import { getPokemon } from '@pokebag/data-sdk'
async function getSomePokemon() {
const pokemon = await getPokemon({
ids: [
'mr-mime',
'zeraora',
],
})
console.log(pokemon)
}
getSomePokemon()
// Logs an array with data for Mr. Mime and ZeraoraGet Pokémon With Skills
Options
Last updated
Was this helpful?