Investing.com Crypto All-in-One: Prices, History & Top Coins avatar

Investing.com Crypto All-in-One: Prices, History & Top Coins

Pricing

from $5.00 / 1,000 crypto data

Go to Apify Store
Investing.com Crypto All-in-One: Prices, History & Top Coins

Investing.com Crypto All-in-One: Prices, History & Top Coins

One scraper for everything about a cryptocurrency on Investing.com (Bitcoin, Ethereum, Solana...): live price, historical prices, technical analysis, news, related coins and the top cryptocurrencies ranked by market cap. 32 languages, any currency.

Pricing

from $5.00 / 1,000 crypto data

Rating

0.0

(0)

Developer

Pinto Studio

Pinto Studio

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

10 hours ago

Last modified

Categories

Share

Get cryptocurrencies data from Investing.com: prices, history and more. Choose exactly what you need, in 32 languages and in any currency.

What you can get

Pick one or more options in "What do you want to get?" (dataToGet):

OptionNameWhat you get
overviewQuote & overviewCurrent price, change, open/high/low, bid/ask, 52-week range, exchange and more.
historicalHistorical pricesDaily, weekly or monthly prices (open, high, low, close, volume, change %) between two dates.
technicalTechnical analysisIndicators (RSI, MACD, ...), moving averages (5 to 200) and pivot points, with buy/sell signals.
newsLatest newsLatest news articles about it (title, summary, link, date, source).
relatedRelated instrumentsOther instruments people also watch, with their price and change.
top_cryptosMARKET: top cryptocurrenciesCryptocurrencies ranked by market cap: price, market cap, 24h volume, 24h and 7-day change, supply.

How to use it (no code needed)

  1. Open the actor on Apify and go to the Input tab.
  2. In "Cryptocurrencies to look up", type what you want, one per line, for example: BTC, ETH.
  3. In "What do you want to get?", tick the data you need.
  4. (Optional) choose a Language and a Currency.
  5. Click Start.
  6. When it finishes, open the Output tab. You can download the results as JSON, CSV, Excel or view them as a table.

Input fields

FieldWhat it doesExample
instrumentsCoin symbols (BTC), names (Bitcoin) or investing.com links. One per line.["BTC", "ETH"]
dataToGetWhat you want. Pick one or more of the options in the table above.["overview", "historical"]
languageLanguage of names, descriptions and news (32 languages)."en", "pt-br", "de", "ja"
currencyOptional. Show prices in another currency. local = the currency of the chosen language's country. Empty = the instrument's own currency."EUR", "BRL", "local"
historicalFrom / historicalToDates for historical prices. Empty = the last 30 days."2026-01-01"
historicalIntervaldaily, weekly or monthly."daily"
historicalOrderasc (oldest first) or desc (newest first)."asc"
splitHistoricalRowstrue saves every day as its own row: best for Excel/CSV.false
technicalIntervalTimeframe of the technical analysis: 1m, 5m, 15m, 30m, 1h, 5h, 1d, 1w, 1mo or all."1d"
marketLimitMaximum number of rows for the MARKET options (up to 2000).100
proxyTypeours (default): our proxy, included in the price. own: use your own proxy."ours"
ownProxyUrlsYour proxy URLs, only used when proxyType is own.["http://user:pass@host:port"]

Example inputs

1. Prices and history

{
"instruments": [
"BTC",
"ETH"
],
"dataToGet": [
"overview",
"historical"
],
"historicalFrom": "2026-01-01",
"historicalTo": "2026-06-30"
}

2. In Portuguese, prices in Brazilian reais

{
"instruments": [
"Solana"
],
"dataToGet": [
"overview",
"news"
],
"language": "pt-br",
"currency": "BRL"
}

3. Market data (no list needed)

{
"dataToGet": [
"top_cryptos"
],
"marketLimit": 50,
"currency": "EUR"
}

Market options return one row per item (e.g. one row per stock), so they look like a normal table.

What the results look like

Every result is one item in the dataset. For the cryptocurrencies you typed, you get one item per cryptocurrency and per option:

FieldMeaning
inputWhat you typed
dataTypeWhich option this item is (overview, historical, ...)
instrumentThe cryptocurrency that was found: name, symbol, link, and how it was found
languageLanguage of the texts
currencyCurrency of the prices in this item
metaExtra details, e.g. the exchange rate used when you asked for another currency
dataThe data itself
errornull, or the reason this item failed (the other items still work)

Example (shortened):

{
"input": "BTC",
"dataType": "overview",
"instrument": {
"kind": "crypto",
"slug": "bitcoin",
"cid": null,
"url": "https://www.investing.com/crypto/bitcoin",
"found_by": "list (symbol)",
"id": "1057391",
"name": "Bitcoin",
"symbol": "BTC",
"country": null,
"currency": "USD",
"other_matches": 0
},
"language": "en",
"currency": "USD",
"meta": {
"currency": "USD",
"native_currency": "USD"
},
"data": {
"id": "1057391",
"kind": "crypto",
"slug": "bitcoin",
"type": "currency",
"name": "Bitcoin",
"short_name": "Bitcoin",
"symbol": "BTC/USD",
"url": "https://www.investing.com/crypto/bitcoin",
"isin": null,
"is_open": true,
"is_crypto": true,
"exchange": {
"id": "1037",
"code": "Investing.com",
"name": "Investing.com Index",
"country": null,
"flag": "bitcoin"
},
"price": {
"last": 84391.8,
"previous_close": 84097.5,
"open": 84097.5,
"high": 84392.1,
"low": 83796.3,
"change": 294.4,
"change_percent": 0.35,
"bid": null,
"ask": null,
"currency": "USD",
"decimals": 1,
"delayed": false,
"updated_at": "2026-09-26T23:18:15.348000+00:00"
},
"range_52_weeks": {
"low": 57832.5,
"high": 126186
},
"...": "6 more fields"
},
"error": null
}

Call it from your code

Replace YOUR_API_TOKEN with your token (Apify Console → Settings → Integrations) and pintostudio with your Apify username.

Using the API (runs the actor and returns the results in one call):

curl -X POST "https://api.apify.com/v2/acts/pintostudio~investing-com-crypto/run-sync-get-dataset-items?token=YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"instruments": ["BTC"], "dataToGet": ["overview"]}'

Python (pip install apify-client):

from apify_client import ApifyClient
client = ApifyClient("YOUR_API_TOKEN")
run = client.actor("pintostudio/investing-com-crypto").call(run_input={
"instruments": ["BTC", "ETH"],
"dataToGet": ["overview"],
})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item["input"], item["dataType"], item["data"])

JavaScript (npm install apify-client):

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR_API_TOKEN' });
const run = await client.actor('pintostudio/investing-com-crypto').call({
instruments: ["BTC", "ETH"],
dataToGet: ['overview'],
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);

Proxy

Investing.com blocks many IPs, so every request goes through a proxy. You have two options in Proxy (proxyType):

OptionWhat happensWho pays for the proxy
Our proxy (default)Requests go through our proxy. Nothing to set up.Included in the event price, no extra cost.
My own proxyRequests go through the proxy URLs you add in Your proxy URLs (ownProxyUrls). Several URLs are rotated.You, directly to your proxy provider. The actor price stays the same.

Apify Proxy is not used by this actor, so it never adds proxy usage to your Apify bill. If you choose My own proxy without adding a URL, the run stops with a clear message.

Pricing

You only pay for what you get (pay per event). Items that fail are never charged.

EventPriceWhen
Actor start$0.00005Once per run
Crypto data$0.005Each coin × option (overview, historical, technical, news, related)
Market row$0.0005Each row of the top cryptocurrencies list

Examples: overview of 50 coins ≈ $0.25 · full daily history of Bitcoin ≈ $0.005 · top 100 cryptocurrencies ≈ $0.05. Historical prices are charged once per coin, no matter how many days you ask for. Set a maximum cost per run and the actor stops cleanly when it is reached. Tip: ask for several coins and options in one run, it is faster than many small runs.

Good to know

  • Not sure what to type? Paste the link of the cryptocurrency from investing.com. It always works.
  • Currency: prices are converted with the live exchange rate. Historical prices, dividends, earnings and financial statements use the rate of each date. Percentages, ratios and volumes are never converted. The item's meta shows the rate used.
  • Language: changes names, descriptions and news. Numbers stay the same.
  • Errors: if one cryptocurrency or option fails, you get an item with an error explaining why, and everything else still runs.
  • Proxy: see Proxy above. By default you do not need to do anything.