Scrape detailed game information from GOG.com, including prices, features, screenshots, release dates, and more. Perfect for game data analysis, price tracking, and market research.
Extract comprehensive game data from GOG.com, including detailed game information, pricing, features, and metadata.
The actor provides detailed game information including:
searchUrls
: Array of GOG.com URLs to scrapemaxItems
: Maximum number of items to scrapeproxyConfiguration
: Proxy settings for avoiding rate limitsmaxItems
based on your needsA full explanation of an input example in JSON.
1{ 2 "searchUrls": [ 3 "https://www.gog.com/en/games?releaseStatuses=new-arrival,upcoming%3Fpage%3D1" 4 ], 5 "maxItems": 50 6}
The results will be wrapped into a dataset which you can always find in the Storage tab. Here's an excerpt from the data you'd get if you apply the input parameters above:
And here is the same data but in JSON. You can choose in which format to download your data: JSON, JSONL, Excel spreadsheet, HTML table, CSV, or XML.
1[ 2 { 3 "id": "1207660573", 4 "slug": "stalker_shadow_of_chernobyl", 5 "features": [ 6 { 7 "name": "Cloud saves", 8 "slug": "cloud_saves" 9 }, 10 { 11 "name": "Multi-player", 12 "slug": "multi" 13 }, 14 { 15 "name": "Single-player", 16 "slug": "single" 17 } 18 ], 19 "screenshots": [ 20 "https://images.gog-statics.com/37637327dc5c39248eedb49d7bfe528d05d64e3672e6c649e3685ab696385c61_{formatter}.jpg", 21 "https://images.gog-statics.com/4b298d78bc2c74e8d6f53794420aa36f2fe0e9e107cf4443476bdac580ed7e75_{formatter}.jpg", 22 "https://images.gog-statics.com/a64cefd8e7771bc8d22c0d8f962df8c0034a11617104e1dacd70e52fb4a821b3_{formatter}.jpg", 23 "https://images.gog-statics.com/3255c8a45be3e073505853fdfd001d1478195c763b2d18d456a4527b44e1a73b_{formatter}.jpg", 24 "https://images.gog-statics.com/f56a70d70a25fb2858ef0e1be96602abc1928b982d13a14f7aaa42e0570d29bc_{formatter}.jpg", 25 "https://images.gog-statics.com/83d29595769c796f93dcdd2b490eea7d8d7ba86eb27c43e9980361649cfb039b_{formatter}.jpg", 26 "https://images.gog-statics.com/4e2663700ba2c6e3de9ed009b8d252384820149a74e2a872848dcbcd0cbab81b_{formatter}.jpg", 27 "https://images.gog-statics.com/dcee3988258d9ace549eba311f5be2bb8a3d7de85838c91cba6ca5afe90665d0_{formatter}.jpg", 28 "https://images.gog-statics.com/bad407c765f494e4b612e630597c5912d1ad42d5827f4cfadaae172e6dae2752_{formatter}.jpg", 29 "https://images.gog-statics.com/5b910723d8fe59be065ba0a0c7f652794900871c21d74c99b3057dedc1e979a1_{formatter}.jpg", 30 "https://images.gog-statics.com/6c4c7db707caa3c2aefaa3cf62bfaf3ea48e512373814276d1fe8cad4f478530_{formatter}.jpg", 31 "https://images.gog-statics.com/6ac19f9df9f51f0ed432b69fcd37a56754bb39fbada1d36fca81bde678b1687c_{formatter}.jpg", 32 "https://images.gog-statics.com/94d6b058b09194717a51d761b0c49baa64f4da83f79ac2e8914386fb8b16ab79_{formatter}.jpg", 33 "https://images.gog-statics.com/a187afd86431a93943c3c43c2ac67e70fe7513c6c6418e51b2a949a100484a38_{formatter}.jpg" 34 ], 35 "userPreferredLanguage": { 36 "code": "en", 37 "inAudio": true, 38 "inText": true 39 }, 40 "releaseDate": "2007.03.20", 41 "storeReleaseDate": "2014.02.06", 42 "productType": "game", 43 "title": "S.T.A.L.K.E.R.: Shadow of Chernobyl", 44 "coverHorizontal": "https://images.gog-statics.com/384064881c0c18cbd2b7ebc076c0d905f0a6b5c17e6c37814cc52287e1cc46c3.png", 45 "coverVertical": "https://images.gog-statics.com/af9788fcd99b352f4c31f3f1527cadc0aaa3ffeae10320242210d4bc4d2f1a95.jpg", 46 "developers": [ 47 "GSC Game World" 48 ], 49 "publishers": [ 50 "GSC Game World" 51 ], 52 "operatingSystems": [ 53 "windows" 54 ], 55 "price": { 56 "final": "CN¥17", 57 "base": "CN¥68", 58 "discount": "-75%", 59 "finalMoney": { 60 "amount": "17.00", 61 "currency": "CNY", 62 "discount": "51.00" 63 }, 64 "baseMoney": { 65 "amount": "68.00", 66 "currency": "CNY" 67 } 68 }, 69 "productState": "default", 70 "genres": [ 71 { 72 "name": "Shooter", 73 "slug": "shooter" 74 }, 75 { 76 "name": "FPP", 77 "slug": "fpp" 78 }, 79 { 80 "name": "Survival", 81 "slug": "survival" 82 } 83 ], 84 "tags": [ 85 { 86 "name": "Atmospheric", 87 "slug": "atmospheric" 88 }, 89 { 90 "name": "Classic", 91 "slug": "classic" 92 }, 93 { 94 "name": "Science", 95 "slug": "science" 96 }, 97 { 98 "name": "First-Person", 99 "slug": "first-person" 100 }, 101 { 102 "name": "Horror", 103 "slug": "horror" 104 }, 105 { 106 "name": "Open World", 107 "slug": "open-world" 108 }, 109 { 110 "name": "Survival", 111 "slug": "survival" 112 }, 113 { 114 "name": "Difficult", 115 "slug": "difficult" 116 }, 117 { 118 "name": "FPS", 119 "slug": "fps" 120 }, 121 { 122 "name": "Shooter", 123 "slug": "shooter" 124 }, 125 { 126 "name": "Post-apocalyptic", 127 "slug": "post-apocalyptic" 128 }, 129 { 130 "name": "Survival Horror", 131 "slug": "survival-horror" 132 }, 133 { 134 "name": "Good Old Game", 135 "slug": "good-old-game" 136 } 137 ], 138 "reviewsRating": 46, 139 "editions": [], 140 "ratings": [ 141 { 142 "name": "pegiRating", 143 "ageRating": "16" 144 }, 145 { 146 "name": "esrbRating", 147 "ageRating": "17" 148 }, 149 { 150 "name": "uskRating", 151 "ageRating": "18" 152 } 153 ], 154 "storeLink": "https://www.gog.com/en/game/stalker_shadow_of_chernobyl" 155 }, 156 ... 157]
Yes, if you're scraping publicly available data for personal or internal use. Always review Websute's Terms of Service before large-scale use or redistribution.
No. This is a no-code tool — just enter a job title, location, and run the scraper directly from your dashboard or Apify actor page.
It extracts job titles, companies, salaries (if available), descriptions, locations, and post dates. You can export all of it to Excel or JSON.
Yes, you can scrape multiple pages and refine by job title, location, keyword, or more depending on the input settings you use.
You can use the Try Now button on this page to go to the scraper. You’ll be guided to input a search term and get structured results. No setup needed!