GPUCHECK Scraper
7 days trial then $50.00/month - No credit card required now
GPUCHECK Scraper
7 days trial then $50.00/month - No credit card required now
Extract only new gpu, cpu, quality, resolution, game, and corresponding fps from the last run
You can access the GPUCHECK 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 "gpuIncludeRegex": [
12 "460"
13 ],
14 "cpuIncludeRegex": [
15 "2200g"
16 ],
17 "gpuExcludeRegex": [
18 "Radeon HD",
19 "Radeon R\\d+",
20 "GT\\s+",
21 "GTS",
22 "Max-Q",
23 "GTX \\d{3}",
24 "mobile",
25 "GTX 10\\d+",
26 "Radeon VII",
27 "RX VEGA",
28 "TITAN",
29 "2080"
30 ],
31 "cpuExcludeRegex": [
32 "i[3-7].\\d{3}\\w{1}",
33 "i[3-7]-\\d{3}",
34 "Ryzen 3 1\\d+",
35 "Ryzen 5 1\\d+",
36 "Ryzen 7 1\\d+",
37 "Threadripper",
38 "AMD Athlon",
39 "AMD E2",
40 "AMD FX",
41 "AMD Phenom",
42 "Intel Core2 Duo",
43 "Intel Core2 Extreme",
44 "Intel Core2 Quad",
45 "Intel Pentium",
46 "i3-2\\d+",
47 "i5-2\\d+",
48 "i7-2\\d+",
49 "i3-3\\d+",
50 "i5-3\\d+",
51 "i7-3\\d+",
52 "i3-4\\d+",
53 "i5-4\\d+",
54 "i7-4\\d+",
55 "i3-5\\d+",
56 "i5-5\\d+",
57 "i7-5\\d+",
58 "i3-6\\d+",
59 "i5-6\\d+",
60 "i7-6\\d+",
61 "i3-7\\d+",
62 "i5-7\\d+",
63 "i7-7\\d+"
64 ],
65 "proxyConfig": {
66 "useApifyProxy": true
67 }
68};
69
70// Run the Actor and wait for it to finish
71const run = await client.actor("dtrungtin/gpuchecker-scraper").call(input);
72
73// Fetch and print Actor results from the run's dataset (if any)
74console.log('Results from dataset');
75console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
76const { items } = await client.dataset(run.defaultDatasetId).listItems();
77items.forEach((item) => {
78 console.dir(item);
79});
80
81// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs
gpu, cpu, quality, resolution, game, fps API in JavaScript
The Apify API client for JavaScript is the official library that allows you to use GPUCHECK 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: