Trueachievements Scraper avatar
Trueachievements Scraper
Try for free

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

View all Actors
Trueachievements Scraper

Trueachievements Scraper

epctex/trueachievements-scraper
Try for free

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

Get any information from Trueachievements! Games, articles, comments, achievements, developers, publishers, genres, and all the extensive information are ready for you! Search for keywords, genres, publishers, and series, filter by your needs, and export your data by XML, JSON, CSV, Excel, or HTML

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 more

1# Set API token
2API_TOKEN=<YOUR_API_TOKEN>
3
4# Prepare Actor input
5cat > input.json <<'EOF'
6{
7  "search": "rock",
8  "startUrls": [
9    "https://www.trueachievements.com/news?search=game",
10    "https://www.trueachievements.com/n52218/way-to-the-woods-game-pass",
11    "https://www.trueachievements.com/game/Monster-Energy-Supercross-4",
12    "https://www.trueachievements.com/xbox-series",
13    "https://www.trueachievements.com/series/Call-of-Duty?distinct=true&dlcsetting=AllDLC",
14    "https://www.trueachievements.com/publisher/Electronic-Arts/games",
15    "https://www.trueachievements.com/xbox-game-pass/games",
16    "https://www.trueachievements.com/games.aspx",
17    "https://www.trueachievements.com/genre/Simulation-Racing",
18    "https://www.trueachievements.com/searchresults.aspx?search=game"
19  ],
20  "maxItems": 20,
21  "endPage": 1,
22  "extendOutputFunction": "($) => { return {} }",
23  "customMapFunction": "(object) => { return {...object} }",
24  "proxy": {
25    "useApifyProxy": true
26  }
27}
28EOF
29
30# Run the Actor using an HTTP API
31# See the full API reference at https://docs.apify.com/api/v2
32curl "https://api.apify.com/v2/acts/epctex~trueachievements-scraper/runs?token=$API_TOKEN" \
33  -X POST \
34  -d @input.json \
35  -H 'Content-Type: application/json'
Developer
Maintained by Community
Actor metrics
  • 1 monthly user
  • 1 star
  • 100.0% runs succeeded
  • Created in Jan 2023
  • Modified about 24 hours ago