Weather

Access comprehensive weather data including current conditions, forecasts, and historical weather information based on location coordinates, providing temperature, humidity, wind speed, precipitation probability, and other atmospheric conditions.

Get the current weather

Get the current weather using multiple APIs. The first successful response will be returned.

GET
/ weather

Parameters

Name Type Description Required
latitude number Required
longitude number Required

Response

{
  "type": "object",
  "properties": {
    "weather": {
      "type": "string",
      "description": "The current weather",
      "example": "sunny"
    }
  },
  "required": [
    "weather"
  ]
}
curl --request GET \
      --url https://apikiss.com/v1/chuck-norris-facts/ \
      --header 'Authorization: Bearer <token>'
{
      "fact": "Chuck Norris can divide by zero."
    }

Authorizations

Authorization
header
required

Authentication token in the format "Bearer <token>"

Try it out

Get Weather Data

// Result will appear here