Bitcoin / Ethereum Address Watcher avatar
Bitcoin / Ethereum Address Watcher
Deprecated
View all Actors
This Actor is deprecated

This Actor is unavailable because the developer has decided to deprecate it. Would you like to try a similar Actor instead?

See alternative Actors
Bitcoin / Ethereum Address Watcher

Bitcoin / Ethereum Address Watcher

pocesar/crypto-watcher

Scrape and watch for balance and transactions for Bitcoin and Ethereum addresses.

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn mode

Node.js

Python

curl

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4const client = new ApifyClient({
5    token: '<YOUR_API_TOKEN>',
6});
7
8// Prepare Actor input
9const input = {
10    "maxTransactions": 10,
11    "proxy": {
12        "useApifyProxy": true
13    },
14    "extendOutputFunction": async ({ data, item, page, request, _, customData }) => {
15      return item;
16    },
17    "extendScraperFunction": async ({ page, request, customData, Apify }) => {
18     
19    },
20    "customData": {}
21};
22
23(async () => {
24    // Run the Actor and wait for it to finish
25    const run = await client.actor("pocesar/crypto-watcher").call(input);
26
27    // Fetch and print Actor results from the run's dataset (if any)
28    console.log('Results from dataset');
29    const { items } = await client.dataset(run.defaultDatasetId).listItems();
30    items.forEach((item) => {
31        console.dir(item);
32    });
33})();
Developer
Maintained by Community
Categories