Street Fighter 6 CFN Scraper
Try for free
No credit card required
Go to Store
Street Fighter 6 CFN Scraper
3ternal/street-fighter-6-cfn-scraper
Try for free
No credit card required
SF6 scraper for the Capcom Fighters Network (Buckler's Boot Camp)
You can access the Street Fighter 6 CFN Scraper programmatically from your own JavaScript applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.
1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4// Replace the '<YOUR_API_TOKEN>' with your token
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9// Prepare Actor input
10const input = {
11 "rank_to_search": 1,
12 "start_page_array": [
13 6102,
14 6462,
15 7248,
16 8418,
17 9637,
18 12306,
19 13994,
20 15815,
21 18101,
22 20841,
23 26615,
24 28248,
25 29682,
26 31164,
27 32676,
28 35215,
29 36138,
30 37770,
31 39772,
32 41749,
33 44936,
34 45672,
35 47114,
36 48594,
37 49774,
38 51799,
39 52580,
40 54017,
41 55291,
42 56674,
43 59273,
44 59795,
45 60333,
46 60962,
47 61552
48 ]
49};
50
51// Run the Actor and wait for it to finish
52const run = await client.actor("3ternal/street-fighter-6-cfn-scraper").call(input);
53
54// Fetch and print Actor results from the run's dataset (if any)
55console.log('Results from dataset');
56console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
57const { items } = await client.dataset(run.defaultDatasetId).listItems();
58items.forEach((item) => {
59 console.dir(item);
60});
61
62// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs
Street Fighter 6 CFN Scraper API in JavaScript
The Apify API client for JavaScript is the official library that allows you to use Street Fighter 6 CFN Scraper API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.
Install the apify-client
npm install apify-client
Other API clients include: