FREE USAGE
Methods
- getForecasts
getForecasts (GET)
Gets forecast given a location
Parameters
location
STRING
Your location
For example: "Los Angeles"
Results (Array)
condition
STRING
Conditions
For example: ""Partly Cloudy""
day_of_week
STRING
day of the week
For example: "Mon"
high
NUMBER
High temperature (°F)
For example: "79"
low
NUMBER
Low temperature (°F)
For example: "60"
Example
JSON
[
{
"condition": "\"Partly Cloudy\"",
"day_of_week": "Mon",
"high": 79,
"low": 60
}
]


running