商业
Currency Exchange Rates Scraper
Scrape live foreign exchange rates for any base currency against 160+ world currencies. Each record has base currency, target currency, rate and last update time. Export to JSON, CSV or Excel.
exchange-rates-scraper.json 200 OK
{ "baseCurrency": "USD", "targetCurrency": "USD", "rate": 1, "inverseRate": 1, "lastUpdated": "Sat, 25 Jul 2026 00:02:32 +0000", "lastUpdatedUnix": 1784937752, "nextUpdate": "Sun, 26 Jul 2026 00:18:22 +0000", "source": "Exchange Rates", "observedAt": "2026-07-25T10:38:25.993Z" }
你会得到什么
每次运行都返回干净、带类型的记录,可直接用于你的 CRM、表格或数据库。
- 每个结果对应一条干净记录,已去重并规范化
- JSON、CSV 或 Excel 的稳定结构,也可通过 Apify API 读取
- 在云端按用量付费,无需安装或维护
返回的字段
Base CurrencyTarget CurrencyRateInverse RateLast UpdatedLast Updated UnixNext Update
示例输出
一条真实的示例记录,正是你收到的结构。
| Base Currency | Target Currency | Rate | Inverse Rate |
|---|---|---|---|
| USD | USD | 1 | 1 |
| USD | AED | 3.6725 | 0.272294 |
| USD | AFN | 65.943672 | 0.015164 |
| USD | ALL | 82.178887 | 0.012169 |
| USD | AMD | 366.12352 | 0.002731 |
GET /exchange-rates-scraper
{ "baseCurrency": "USD", "targetCurrency": "USD", "rate": 1, "inverseRate": 1, "lastUpdated": "Sat, 25 Jul 2026 00:02:32 +0000", "lastUpdatedUnix": 1784937752, "nextUpdate": "Sun, 26 Jul 2026 00:18:22 +0000", "source": "Exchange Rates", "observedAt": "2026-07-25T10:38:25.993Z" }
相关爬虫
常见问题
How do I read a rate?
The rate is how many units of the target currency equal one unit of the base. If base is USD, target is EUR and rate is 0.92, then 1 USD equals 0.92 EUR.
Which currencies are covered?
More than 160 world currencies are returned for each base, including all major and many minor currencies.
Can I convert from a currency other than USD?
Yes. Set the base currency to any supported three-letter code and every rate is expressed relative to it.
How fresh is the data?
Rates are read live at run time. The lastUpdated field tells you when the source last refreshed them, and observedAt records when this run read them.