Arbitrum Bridge Token List Scraper
Pricing
from $7.50 / 1,000 results
Arbitrum Bridge Token List Scraper
Scrapes the Arbitrum bridge token list and returns each token as a flat row with symbol, name, contract address, and chain details. Filter by symbol, name, or address.
Pricing
from $7.50 / 1,000 results
Rating
0.0
(0)
Developer
ParseForge
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
11 days ago
Last modified
Categories
Share
Arbitrum Bridge Token List Scraper
Scrape the full Arbitrum bridge token list in one run. Every token comes with its symbol, name, contract address, and chain details. No API key or wallet needed. Export to CSV, JSON, Excel, or XML.
The Arbitrum bridge moves tokens between Ethereum and Arbitrum, but the official UI shows only a page at a time and has no export. This Actor reads the public token list directly and returns each token as a flat row, filtered by symbol, name, or contract address. It is the fastest way to get a clean dataset of every token that can cross the Arbitrum bridge.
| Who uses it | What they scrape Arbitrum Bridge for |
|---|---|
| DeFi analysts | Which tokens are available on Arbitrum and how the list changes over time |
| Crypto portfolio trackers | A complete list of Arbitrum bridge tokens to map holdings and prices |
| DApp developers | The current token list to populate token selectors and bridge interfaces |
| Market researchers | Token availability on Arbitrum compared with other L2 networks |
What it does
This Actor collects the Arbitrum bridge token list and returns each token as a flat row with its symbol, name, contract address, and chain details.
- ๐ Symbol filter: case-insensitive match on token symbol, e.g. USDC.
- ๐ Name contains: substring match on token name, e.g. 'Arbitrum'.
- ๐ Address equals: exact match on the Arbitrum contract address.
- ๐ข Maximum tokens: cap the number of tokens collected per run, from 1 to 1,000,000.
Results export to CSV, JSON, Excel, or XML, or straight from the API.
What you can do with Arbitrum Bridge data
๐ Track token availability on Arbitrum.
A DeFi analyst runs the Actor weekly with no filters and compares the token list to previous runs to spot new bridge listings.
๐งฉ Populate a token selector.
A DApp developer runs the Actor once and imports the flat CSV into their bridge UI to show all supported tokens.
๐ Audit a specific token.
A compliance officer filters by addressEquals to confirm whether a given contract is on the Arbitrum bridge list.
๐ Compare L2 ecosystems.
A market researcher collects the Arbitrum token list and compares it with Optimism or Base lists to see which tokens are cross-listed.
Why choose this scraper
| What you get | |
|---|---|
| No API key | Reads the public Arbitrum bridge token list directly, no registration or wallet connection. |
| Flat schema | Every token is one row with symbol, name, address, and chain details, ready for CSV or a database. |
| Filtered output | Narrow by symbol, name, or address before the data is written, so you only pay for what you need. |
| Fresh data | Each run pulls the current list, so you can schedule it to track new token additions. |
How it compares
No other Store actor targets Arbitrum Bridge the same way, so the honest comparison is with the alternatives teams actually weigh.
| Arbitrum Bridge Token List Scraper | Build it in-house | By hand | |
|---|---|---|---|
| Setup | Run it now, zero config | Days of engineering | None, but hours per pull |
| When Arbitrum Bridge changes | Maintained for you | You fix it | You re-learn the page |
| Proxies, retries, anti-bot | Built in | Your problem | Browser only |
| Output | Fixed JSON schema, CSV/Excel export | Whatever you build | Copy-paste |
| Cost | Pay per result | Engineering time | Analyst hours |
Configure the run
Drive the Actor with optional filters for symbol, name, or contract address, and set a maximum number of tokens per run. Filters are applied as the list is read, so only matching tokens 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 collected | Approximate 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
- Create a free Apify account with $5 in credit.
- Open the Arbitrum Bridge Token List Scraper.
- Set your inputs and any filters, then click Start.
- 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 Arbitrum Bridge 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/arbitrum-bridge-tokens-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 symbol, nameContains, or addressEquals, the Actor returns only tokens that match. Try clearing all filters and setting a higher maxItems.
Why did I get fewer tokens than maxItems?
The Actor returns up to maxItems tokens. If the full list has fewer tokens than your maxItems, you will get all of them. If you used filters, only matching tokens are returned.
Can I get the token list for a specific chain?
This Actor returns the Arbitrum bridge token list, which includes tokens on Arbitrum. For other chains, use a different scraper or the chain-specific bridge source.
The addressEquals filter is not working.
Make sure you are using the Arbitrum contract address, not the Ethereum address. The Actor matches against the address field in the token list.
FAQ
| Question | Answer |
|---|---|
| What is the Arbitrum bridge token list? | It is the set of tokens that can be transferred between Ethereum and Arbitrum through the official bridge. The list includes the token symbol, name, and contract address on Arbitrum. |
| Do I need an API key or wallet? | No. The Actor reads the public token list directly, so you only need an Apify account. |
| How fresh is the data? | Each run fetches the current list from the Arbitrum bridge source, so you get the latest tokens at the time of the run. |
| Can I filter by token symbol? | Yes. Use the symbol input for a case-insensitive exact match, or nameContains for a substring match on the token name. |
| Can I filter by contract address? | Yes. The addressEquals input accepts an Arbitrum contract address and returns only that token if it is on the list. |
| What is the maximum number of tokens I can collect? | You can set maxItems from 1 to 1,000,000. The default is 10, but the full list is usually a few hundred tokens. |
| What output formats are supported? | The Actor can export to CSV, JSON, Excel, or XML, depending on your Apify dataset settings. |
| Does this include token prices or balances? | No. This Actor returns only the token list metadata: symbol, name, address, and chain details. For prices or balances, use a dedicated price scraper. |
| Can I schedule this Actor to run daily? | Yes. Use Apify schedules to run it at any interval and track changes to the token list over time. |
| Is this the same as the Arbitrum token bridge UI? | It reads the same underlying token list that the bridge UI uses, but returns it as structured data instead of a paginated web page. |
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 Arbitrum Foundation. 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.
