Playstation Store Scraper avatar
Playstation Store Scraper
Try for free

3 days trial then $10.00/month - No credit card required now

View all Actors
Playstation Store Scraper

Playstation Store Scraper

epctex/playstation-store-scraper
Try for free

3 days trial then $10.00/month - No credit card required now

Harvest game details from the PlayStation Store effortlessly. Delve deep to pull product info, related items, categories, discounts, and various editions. Navigate the vast Playstation Store's database and highlight top games using any keyword. Experience a comprehensive view of gaming insights.

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    "search": "food game",
11    "startUrls": [
12        "https://store.playstation.com/en-tr/product/EP4389-CUSA17440_00-DCLGAMEEU0000000",
13        "https://store.playstation.com/en-tr/search/game",
14        "https://store.playstation.com/en-tr/concept/10000886",
15        "https://store.playstation.com/en-tr/category/d42c9dc6-5516-4a34-a511-c09894266d98/1"
16    ],
17    "maxItems": 20,
18    "endPage": 1,
19    "extendOutputFunction": ($) => { return {} },
20    "customMapFunction": (object) => { return {...object} },
21    "proxy": {
22        "useApifyProxy": true
23    }
24};
25
26(async () => {
27    // Run the Actor and wait for it to finish
28    const run = await client.actor("epctex/playstation-store-scraper").call(input);
29
30    // Fetch and print Actor results from the run's dataset (if any)
31    console.log('Results from dataset');
32    const { items } = await client.dataset(run.defaultDatasetId).listItems();
33    items.forEach((item) => {
34        console.dir(item);
35    });
36})();
Developer
Maintained by Community
Actor metrics
  • 3 monthly users
  • 100.0% runs succeeded
  • 0.0 days response time
  • Created in May 2022
  • Modified about 14 hours ago