Newsweek Scraper avatar
Newsweek Scraper
Try for free

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

View all Actors
Newsweek Scraper

Newsweek Scraper

epctex/newsweek-scraper
Try for free

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

Scrape the latest articles right away from Newsweek. Retrieve your news directly with the information of title, body, published time, updated time, keywords, images, videos, and many more! Get your data with JSON, XML, Excel, CSV, or many other options. Extremely fast, optimized, and with no limits!

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  "startUrls": [
8    "https://www.newsweek.com/ron-desantis-abortion-six-week-bill-2024-1794367",
9    "https://www.newsweek.com/topic/climate-change",
10    "https://www.newsweek.com/authors/jon-jackson",
11    "https://www.newsweek.com/search/site/?q=biden",
12    "https://www.newsweek.com/education"
13  ],
14  "search": "donald trump",
15  "maxItems": 20,
16  "endPage": 1,
17  "extendOutputFunction": "($) => { return {} }",
18  "customMapFunction": "(object) => { return {...object} }",
19  "proxy": {
20    "useApifyProxy": true
21  }
22}
23EOF
24
25# Run the Actor using an HTTP API
26# See the full API reference at https://docs.apify.com/api/v2
27curl "https://api.apify.com/v2/acts/epctex~newsweek-scraper/runs?token=$API_TOKEN" \
28  -X POST \
29  -d @input.json \
30  -H 'Content-Type: application/json'
Developer
Maintained by Community
Actor metrics
  • 1 monthly user
  • 1 star
  • 100.0% runs succeeded
  • Created in Apr 2023
  • Modified about 23 hours ago