Arbitrum Bridge Token List Scraper avatar

Arbitrum Bridge Token List Scraper

Pricing

from $7.50 / 1,000 results

Go to Apify Store
Arbitrum Bridge Token List Scraper

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

ParseForge

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

11 days ago

Last modified

Share

ParseForge

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 itWhat they scrape Arbitrum Bridge for
DeFi analystsWhich tokens are available on Arbitrum and how the list changes over time
Crypto portfolio trackersA complete list of Arbitrum bridge tokens to map holdings and prices
DApp developersThe current token list to populate token selectors and bridge interfaces
Market researchersToken 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 keyReads the public Arbitrum bridge token list directly, no registration or wallet connection.
Flat schemaEvery token is one row with symbol, name, address, and chain details, ready for CSV or a database.
Filtered outputNarrow by symbol, name, or address before the data is written, so you only pay for what you need.
Fresh dataEach 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 ScraperBuild it in-houseBy hand
SetupRun it now, zero configDays of engineeringNone, but hours per pull
When Arbitrum Bridge changesMaintained for youYou fix itYou re-learn the page
Proxies, retries, anti-botBuilt inYour problemBrowser only
OutputFixed JSON schema, CSV/Excel exportWhatever you buildCopy-paste
CostPay per resultEngineering timeAnalyst 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 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 Arbitrum Bridge 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 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

QuestionAnswer
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.

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.