user3132932
user3132932

Reputation: 31

How to use world weather online api

hello i was wondering how to use worldweatheronline.com's weather api its request looks something like this...

http://api.worldweatheronline.com/free/v1/weather.ashx?q=London&format=json&num_of_days=5&show_comments=no&key=xxxxxxxxxxxxxxxxxxxxxxx

Im just new to this and really dont know how to use this, any help is appreciated.

Its uses a JSON request and it can be found at here http://developer.worldweatheronline.com/io-docs

The Key xxxxxxxxxxxxxxxxxxxx is been used to hide my key

Upvotes: 3

Views: 5257

Answers (3)

DJW001
DJW001

Reputation: 153

This package is designed as a wrapper for the WorldWeatherOnline API:

https://pypi.org/project/WorldWeatherPy/

Upvotes: 1

Vittorio Chierici
Vittorio Chierici

Reputation: 165

Here an example http://api.worldweatheronline.com/free/v2/weather.ashx?key=[API_KEY]&q=48.85,2.35&num_of_days=2&tp=3&format=json

Here the guide with required and non-required fields :http://www.worldweatheronline.com/api/docs/local-city-town-weather-api.aspx#current_condition_element

Upvotes: 0

Scriptable
Scriptable

Reputation: 19750

They have recently published some guides on their blog which show how to use their API in both PHP and NodeJs

PHP Getting Started with World Weather Online API using PHP

Node.js Getting Started with World Weather Online API & Node.js

Upvotes: 0

Related Questions