No args, gets all of the states of all aircraft
https://opensky-network.org/api/states/all

Specifies the time and a transponder address
https://opensky-network.org/api/states/all?time=1458564121&icao24=3c6444
	time: integer - Unix time stamp. Default is the current time
	icao24: string - Can specify multiple

The bounding box around Switzerland
https://opensky-network.org/api/states/all?lamin=45.8389&lomin=5.9962&lamax=47.8229&lomax=10.5226
	lamin: float - lower latitude bound
	lomin: float - lower longitude bound
	lamax: float - higher latitude bound
	lomax: float - higher longitude bound

Response:
{
	time: xxxxxxxxxxxxxxx,
	states: [
		[
			"",
			"",
			"",
			...
		],
		[
			"",
			"",
			"",
			...
		]
	]
}
