Weather Scraper avatar
Weather Scraper
Try for free

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

View all Actors
Weather Scraper

Weather Scraper

epctex/weather-scraper
Try for free

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

Get data about weather forecasts or analyze conditions in any location in the world. This scraper downloads information about forecasts, humidity, temperature, wind, etc. and delivers it in HTML, JSON, XLSX, and more.

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    {
9      "url": "https://weather.com/weather/today/l/5aea1d50a6d6b9e99cf89ba79f463d67dcf21ea5061990aae1ffc1c7fa8911a9"
10    },
11    {
12      "url": "https://weather.com/weather/today/l/ada030b2de8db495da2d93d5a2ecf30de1ce8b54cb09725d19c803543685646d"
13    }
14  ],
15  "locations": [
16    "Montgomery, Alabama",
17    "Juneau, Alaska"
18  ],
19  "locationIds": [
20    "e60256f3426acd3c1b3380921210fcffeab628a120c41d1de03b59a0f0dd32ad",
21    "bf217d537cc1c8074ec195ce07fb74de3c1593caa6033b7c3be4645ccc5b01de"
22  ],
23  "timeFrame": "today",
24  "units": "imperial",
25  "maxItems": 10,
26  "proxyConfiguration": {
27    "useApifyProxy": true
28  },
29  "extendOutputFunction": "($) => { return {} }",
30  "customMapFunction": "(object) => { return {...object} }"
31}
32EOF
33
34# Run the Actor using an HTTP API
35# See the full API reference at https://docs.apify.com/api/v2
36curl "https://api.apify.com/v2/acts/epctex~weather-scraper/runs?token=$API_TOKEN" \
37  -X POST \
38  -d @input.json \
39  -H 'Content-Type: application/json'
Developer
Maintained by Community
Actor metrics
  • 3 monthly users
  • 4 stars
  • 100.0% runs succeeded
  • Created in Aug 2020
  • Modified 2 days ago