PokeAPI Pokemon Data Scraper avatar

PokeAPI Pokemon Data Scraper

Pricing

from $10.00 / 1,000 results

Go to Apify Store
PokeAPI Pokemon Data Scraper

PokeAPI Pokemon Data Scraper

Scrape Pokemon data from PokeAPI. Get stats, types, abilities, and sprites for all 1000+ Pokemon. Filter by generation or type.

Pricing

from $10.00 / 1,000 results

Rating

0.0

(0)

Developer

lulz bot

lulz bot

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

a day ago

Last modified

Categories

Share

Scrape Pokemon data from PokeAPI, the free Pokemon RESTful API.

Features

  • List mode: Browse all 1000+ Pokemon with pagination
  • Pokemon mode: Look up specific Pokemon by name or ID
  • Filter by generation: Get all Pokemon from a specific generation (1-9)
  • Filter by type: Get all Pokemon of a specific type (fire, water, etc.)
  • Complete stats: Base stats, abilities, types, sprites, and more

Input

FieldTypeDescription
modestringlist or pokemon
namesstring[]Pokemon names or IDs (pokemon mode)
generationintegerFilter by generation 1-9 (list mode)
typestringFilter by type (list mode)
limitintegerMax results (default: 100)

Output

Each result contains:

  • id, name, types[]
  • height, weight, baseExperience
  • abilities[] with hidden ability flag
  • stats[] (hp, attack, defense, sp. attack, sp. defense, speed)
  • movesCount
  • sprites (front, back, shiny)
  • generation
  • sourceUrl, scrapedAt

Example

Get all Generation 1 Pokemon:

{
"mode": "list",
"generation": 1,
"limit": 151
}

Look up specific Pokemon:

{
"mode": "pokemon",
"names": ["pikachu", "charizard", "mewtwo"]
}