Skip to main content
GET
/
v1
/
utils
/
weather
Get weather information
curl --request GET \
  --url https://api-kaori.mikabot.xyz/v1/utils/weather \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "code": 123,
  "data": {
    "location": {
      "name": "<string>",
      "timezone": "<string>",
      "localTime": "<string>",
      "timezoneAbbr": "<string>",
      "url": "<string>"
    },
    "current": {
      "temperature": 123,
      "condition": "<string>",
      "icon": "<string>",
      "humidity": 123,
      "wind": {
        "speed": "<string>",
        "direction": "<string>",
        "display": "<string>"
      },
      "observation": {
        "time": "<string>",
        "date": "<string>"
      },
      "feelsLike": 123,
      "conditionCode": 123,
      "pressure": "<string>",
      "visibility": "<string>",
      "dewPoint": 123
    },
    "forecast": [
      {
        "date": "<string>",
        "day": "<string>",
        "low": 123,
        "high": 123,
        "condition": "<string>",
        "icon": "<string>",
        "conditionCode": 123,
        "precipitationChance": 123
      }
    ],
    "meta": {
      "provider": "<string>",
      "unit": "C",
      "language": "<string>",
      "fetchedAt": "<string>"
    }
  }
}

Authorizations

Authorization
string
header
required

Authorization: Bearer sk_kaori_*

Query Parameters

location
string
required

City or location name (e.g. Bengaluru, Karnataka)

unit
enum<string>
Available options:
C,
F
language
string

Response

Response for status 200

success
boolean
required
code
number
required
data
object
required
Last modified on February 3, 2026