ParseForge Scrapers

PokeAPI Pokemon Data Scraper

parseforge/pokeapi-pokemon-scraper

GAMES

Scrape Pokemon data from PokeAPI by name, ID, or in bulk. Returns stats, types, abilities, and sprite URLs in a flat row. No API key required.

Run this scraper See the API call
Total users
2
Monthly active
1
Total runs
13
Bookmarked
0
Rating
Not rated yet
Last modified
11 days ago

Overview

ParseForge

PokeAPI Pokemon Data Scraper

Scrape Pokemon data from PokeAPI by name, ID, or in bulk, up to a million per run. Every Pokemon comes with its stats, types, abilities, sprites, and species details. No API key or registration needed. Export to CSV, JSON, Excel, or XML.

PokeAPI's REST endpoints are free but rate-limited and require you to handle pagination, nested resources, and schema mapping yourself. This Actor reads the public PokeAPI directly, fetches Pokemon by name or ID, or pulls a full list, and returns each one in a flat, consistent row. You get clean, analysis-ready Pokemon data without writing a single request.

Who uses it What they scrape PokeAPI for
Game data analysts Compare base stats and type distributions across all Pokemon generations.
Bot and app developers Populate a local database with Pokemon sprites, abilities, and metadata for a fan app or Discord bot.
Content creators Pull the latest Pokemon data for wiki entries, YouTube infographics, or community guides.
Competitive battlers Export full stat blocks and type matchups to build team-building tools or damage calculators.

What it does

This Actor collects Pokemon data from PokeAPI by name, ID, or as a bulk list, and returns each Pokemon as a flat row with its stats, types, abilities, sprites, and more.

  • 🔍 Single lookup: fetch one Pokemon by exact name or national Pokedex ID, like pikachu or 25.
  • 📊 Bulk extraction: pull up to a million Pokemon in one run, each returned as a flat, predictable row.
  • 🖼️ Sprites included: official artwork and sprite URLs are part of every record so you can display them directly.
  • 📈 Computed stats: base HP, Attack, Defense, Special Attack, Special Defense, and Speed are all flattened into columns.

Results export to CSV, JSON, Excel, or XML, or straight from the API.

What you can do with PokeAPI data

📊 Build a local Pokedex database.

A game data analyst runs the Actor with maxItems set to 1025 and exports the full dataset to CSV for a Tableau dashboard comparing base stats by generation.

🤖 Power a Discord bot or fan app.

A developer fetches all Pokemon with their sprites and types, then seeds a MongoDB collection that backs a slash-command bot for their community server.

🎨 Generate infographics and video assets.

A content creator pulls the latest Pokemon data and official artwork URLs, then feeds them into a Canva template to produce a weekly type-effectiveness chart.

⚔️ Populate a competitive team builder.

A competitive battler scrapes base stats and type data for every fully evolved Pokemon, then imports the CSV into a damage calculator to test team compositions.

Why choose this scraper

What you get
No API key or OAuth Reads public PokeAPI endpoints directly, no registration or token management.
Flat, fixed schema Nested abilities, types, and stats are flattened into one row per Pokemon, ready for spreadsheets.
Sprite URLs included Official artwork and sprite links ship with every record so you can render images immediately.
Bulk-friendly Pull up to a million Pokemon in a single run, filtered only by the count you set.

How it compares

This Actor focuses on flat, analysis-ready output and bulk extraction without API keys, while some competitors add built-in generation or type filters.

Feature ParseForge PokeAPI Pokemon Data Scraper Pokemon Data Scraper (PokeAPI) PokeAPI Scraper - Pokémon Data
No API key required Yes Not listed Yes Not listed
Bulk extraction up to 1M Pokemon Yes Not listed Not listed Not listed
Filter by generation or type Not listed Yes Not listed Yes
Sprite and artwork URLs Yes Yes Not listed Yes
Flat row output (stats, types, abilities) Yes Not listed Not listed Not listed
Single Pokemon lookup by name or ID Yes Not listed Not listed Yes

Configure the run

Drive the Actor with a single Pokemon name or ID, or leave the input empty to pull a full list, and set a maximum item count to control the run size. The Input tab lists every parameter.

A first run with the defaults:

{
 "searchQuery": "pikachu",
 "maxItems": 10
}

A larger pull:

{
 "searchQuery": "pikachu",
 "maxItems": 200
}

Pricing

Pay-per-result: $0.021 per result collected. You pay only for the results written to your dataset.

Results collected Approximate cost
100 results $2.10
1,000 results $21.00
10,000 results $210.00

New Apify accounts start with $5 in free credit.

Free users

Free-plan runs return up to 10 results as a preview. Upgrade your Apify plan to collect up to 1,000,000 results per run.

Run it

  1. Create a free Apify account with $5 in credit.
  2. Open the PokeAPI Pokemon Data Scraper.
  3. Set your inputs and any filters, then click Start.
  4. Export the results as CSV, Excel, JSON, or XML from the Dataset tab.

Run it programmatically through the Apify API (run-sync-get-dataset-items) or the ApifyClient for JavaScript and Python.

Use with AI agents (MCP)

Give an AI agent live access to PokeAPI through the Model Context Protocol. Add the Actor to Claude, Cursor, or any MCP client:

claude mcp add --transport http apify "https://mcp.apify.com?tools=parseforge/pokeapi-pokemon-scraper"

Then prompt it in plain language to run the scraper and read back the results.

Troubleshooting

Why am I getting no results?

Check that you entered a valid Pokemon name or ID. Names are case-sensitive and must match PokeAPI's exact spelling (e.g., 'pikachu', not 'Pikachu'). If you left the name empty, ensure maxItems is set to a number greater than 0.

Why does my run stop after 10 Pokemon?

Free Apify accounts are limited to 10 results as a preview. Upgrade to a paid plan to increase maxItems up to 1,000,000.

Why are some sprite URLs broken?

PokeAPI occasionally updates its asset paths. If a sprite URL returns a 404, the data itself is still valid. Try re-running the Actor after a few hours, or check PokeAPI's status page for any ongoing changes.

Why is the run slow when I fetch thousands of Pokemon?

The Actor respects PokeAPI's rate limits to avoid being blocked. Large bulk runs will take longer. You can reduce maxItems or run the Actor during off-peak hours for faster throughput.

Why do I get a 'Pokemon not found' error?

The name or ID you entered does not match any Pokemon in PokeAPI. Double-check the spelling or try the national Pokedex ID instead. Note that regional variants have specific names (e.g., 'pikachu-rock-star').

FAQ

Question Answer
Do I need a PokeAPI account or API key? No. This Actor reads the public PokeAPI endpoints directly. You do not need to register, obtain a key, or handle OAuth.
How many Pokemon can I scrape in one run? Free users are limited to 10 Pokemon as a preview. Paid Apify plans can set maxItems up to 1,000,000, which covers the entire Pokedex many times over.
What data fields does each Pokemon row include? Every row returns the Pokemon's name, ID, base stats (HP, Attack, Defense, Special Attack, Special Defense, Speed), types, abilities, official sprite URLs, and species details. The exact field list is shown in the sample output on the Actor's page.
Can I filter by generation or type? This Actor fetches Pokemon by name, ID, or as a full list. It does not have built-in generation or type filters. You can apply those filters in your own code or spreadsheet after the data is exported.
How do I get only one specific Pokemon? Enter the Pokemon's exact name (e.g., pikachu) or its national Pokedex ID (e.g., 25) in the 'Pokemon Name' input field and leave maxItems at 1.
Are the sprites and artwork URLs included? Yes. Official artwork and sprite URLs are part of every record so you can display the images directly in your app or report.
What output formats are supported? You can export your dataset to CSV, JSON, Excel, or XML from the Apify dataset tab after the run completes.
Does this Actor handle rate limiting? Yes. The Actor respects PokeAPI's rate limits automatically and retries on failure, so you do not need to manage backoff logic.
Can I schedule this Actor to run daily? Yes. Apify supports scheduled runs. You can set this Actor to run on a cron schedule and receive new Pokemon data automatically if the API is updated.
What happens if I enter an invalid Pokemon name? The Actor will log an error for that specific request and continue with the next item if running in bulk. In single-lookup mode, the run will fail with a clear error message.

Related actors

Browse the full ParseForge collection for more scrapers.

🆘 Need help? Email parseforge@protonmail.com with your run ID, your input, and what you expected.

⚠️ Disclaimer. This Actor is unofficial and is not affiliated with, endorsed by, or sponsored by PokeAPI. It collects only publicly available data. You are responsible for using the collected data in compliance with the source's terms of service and applicable data-protection laws, including GDPR, CCPA, and PIPL. Do not use it to collect personal data unlawfully.

Input

FieldTypeWhat it doesDefault
searchQuery string Optional. A single Pokemon name or id to fetch directly (for example pikachu, ditto, 25). Leave empty to pull a list of Pokemon instead. pikachu
maxItems integer Free users: Limited to 10 Pokemon (preview). Paid users: Optional, max 1,000,000 10

Pricing

from $19.00 per 1,000 results

Charged forWhat it isPrice each
result Single result in the default dataset. $0.019 to $0.021

Tiered: the lower figure is the price on a higher Apify plan. Billing and the free credit live on Apify.

API

One POST returns the dataset directly. Same shape for every scraper in the library, so swapping the slug is the only change.

POST · run and get results
curl -X POST "https://api.apify.com/v2/acts/parseforge~pokeapi-pokemon-scraper/run-sync-get-dataset-items?token=$APIFY_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "helloWorld": 123
  }'

Examples

Input that runs as-is.

input.json
{
  "helloWorld": 123
}

Reviews

No reviews yet. Be the first.

Issues

We build and maintain this scraper, so a problem with it comes to us. Report it on the Apify listing and the thread stays attached to the scraper where the next person can find it: open an issue.

Broken and urgent, or you would rather not post in public? Write to parseforge@protonmail.com and it reaches the people who wrote it.

Related scrapers

Run PokeAPI Pokemon Data Scraper on Apify All scrapers