Uniswap Token List Scraper avatar

Uniswap Token List Scraper

Pricing

from $7.50 / 1,000 results

Go to Apify Store
Uniswap Token List Scraper

Uniswap Token List Scraper

Scrapes the official Uniswap token list for any EVM chain, filtered by chain ID and symbol. Returns each token as a flat row with address, chain ID, symbol, name, and decimals.

Pricing

from $7.50 / 1,000 results

Rating

0.0

(0)

Developer

ParseForge

ParseForge

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

11 days ago

Last modified

Share

ParseForge

Uniswap Token List Scraper

Scrape the official Uniswap token list for any EVM chain, filtered by symbol, up to a million tokens per run. Each token comes with its address, chain ID, symbol, name, and decimals. No login or API key. Export to CSV, JSON, Excel, or XML.

Uniswap's token list is the canonical registry of every asset tradable on the protocol, but querying it means parsing a large JSON file or using the GraphQL API. This Actor reads the public token list directly, filters by chain ID or symbol substring, and returns each match in one fixed schema.

Who uses itWhat they scrape Uniswap for
DeFi developersBuilding a token picker or default list for their dApp
Crypto analystsAuditing which tokens are live on a given chain
Market researchersComparing token availability across EVM chains
TradersFinding new tokens by symbol before they trend

What it does

This Actor collects tokens from the official Uniswap token list, filtered by EVM chain ID and symbol substring, and returns each one as a flat row.

  • ⛓️ Chain filter: restrict results to one EVM chain ID, such as 1 for Ethereum, 10 for Optimism, 137 for Polygon, or 42161 for Arbitrum.
  • 🔤 Symbol filter: case-insensitive substring match on the token symbol, so 'uni' returns UNI, UNI.e, and any other symbol containing 'uni'.
  • 📊 Flat output: every token is a single row with address, chain ID, symbol, name, and decimals, ready for CSV, JSON, Excel, or XML export.
  • Up to a million tokens: set maxItems as high as 1,000,000 to pull the entire list for all chains in one run.

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

What you can do with Uniswap data

🛠️ Build a token picker.

A DeFi developer runs the Actor with chainId=1 and maxItems=1000 to get the full Ethereum token list, then imports the CSV into their dApp's token selector.

📈 Audit chain coverage.

A crypto analyst runs the Actor without filters to collect all tokens across every chain, then pivots the data to see which chains have the most listed assets.

🔍 Find tokens by symbol.

A trader runs the Actor with symbolFilter='pepe' to find every token whose symbol contains 'pepe' across all chains, then checks liquidity on each.

🧪 Seed a test environment.

A QA engineer runs the Actor with chainId=137 and maxItems=50 to get a realistic set of Polygon tokens for integration tests.

Why choose this scraper

What you get
Official sourceData comes from the Uniswap token list, the same registry the protocol uses.
No API keyReads the public list directly, no registration or rate limits.
Multi-chainOne actor covers Ethereum, Optimism, Polygon, Arbitrum, and every other EVM chain.
Clean schemaEvery token is a flat row with address, chain ID, symbol, name, and decimals.

How it compares

This Actor focuses on the official Uniswap token list, while Crypto Whale Tracker monitors new token launches and whale wallets across multiple DEXs.

FeatureParseForgeCrypto Whale Tracker: DEX Token Launches + Wallet Alerts
Official Uniswap token listYesNot listed
Filter by chain IDYesNot listed
Filter by symbol substringYesNot listed
Export to CSV, JSON, Excel, XMLYesNot listed
No API key requiredYesNot listed

Configure the run

Drive the Actor with an optional chain ID and symbol substring, and set a maximum token count; filters run as each token is read so only matches reach your dataset. The Input tab lists every parameter.

A first run with the defaults:

{
"maxItems": 10
}

A larger pull:

{
"maxItems": 200
}

Pricing

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

Results collectedApproximate cost
100 results$0.85
1,000 results$8.50
10,000 results$85.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 Uniswap Token List 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 Uniswap 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/uniswap-token-list-scraper"

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

Troubleshooting

Why am I getting no results?

Check your filters. If you set a chainId that Uniswap does not support, or a symbolFilter that matches no token, the run will return an empty dataset. Try leaving both filters empty and setting a small maxItems to see the full list.

The run is slow or times out.

The token list is large, so fetching all tokens for all chains can take a few minutes. Reduce maxItems or filter by chainId to speed up the run.

I got fewer tokens than maxItems.

The Actor returns only tokens that match your filters. If the filtered list is smaller than maxItems, you will get all matches. Remove filters to get more tokens.

The symbol filter is case sensitive.

It is not. The filter is case-insensitive, so 'UNI', 'uni', and 'Uni' all return the same results.

I need more fields like logo or price.

This Actor returns only the core token list fields. For logos, use the logoURI from the raw list, and for prices, consider a different actor like DexScreener Tokens Scraper.

FAQ

QuestionAnswer
What is the Uniswap token list?It is the official JSON registry of tokens supported by the Uniswap protocol, maintained by Uniswap Labs. Each entry includes the token's address, chain ID, symbol, name, and decimals.
Which chains are supported?Any EVM chain that Uniswap supports, including Ethereum, Optimism, Polygon, Arbitrum, Base, and more. Use the chainId input to filter to one chain, or leave it empty for all chains.
Do I need an API key?No. The Actor reads the public token list directly, so there is no registration, OAuth, or rate limit.
How many tokens can I scrape?Up to 1,000,000 tokens per run. The default is 10, but you can set maxItems to any value between 1 and 1,000,000.
Can I filter by symbol?Yes. The symbolFilter input is a case-insensitive substring match. For example, 'uni' returns UNI, UNI.e, and any other symbol containing 'uni'.
What does the output look like?Each token is a flat row with fields like address, chainId, symbol, name, and decimals. You can export to CSV, JSON, Excel, or XML.
Is this the same as the Uniswap GraphQL API?No. This Actor reads the static token list JSON, which is simpler and faster for bulk exports. The GraphQL API is better for real-time pool data.
Can I get the token logo?The token list includes a logoURI field for many tokens, but this Actor returns only the core fields: address, chainId, symbol, name, and decimals.
How often is the token list updated?The Uniswap token list is updated periodically by Uniswap Labs. This Actor always reads the latest version at the start of each run.
Can I schedule this Actor?Yes. You can set up a schedule in Apify to run it daily, weekly, or at any interval, and the results will be stored in your dataset.

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 Uniswap Labs. 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.