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>'
import requests

url = "https://api-kaori.mikabot.xyz/v1/utils/weather"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api-kaori.mikabot.xyz/v1/utils/weather', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api-kaori.mikabot.xyz/v1/utils/weather",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api-kaori.mikabot.xyz/v1/utils/weather"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "Bearer <token>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api-kaori.mikabot.xyz/v1/utils/weather")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api-kaori.mikabot.xyz/v1/utils/weather")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
{
  "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>",
      "uv": {
        "index": 123,
        "description": "<string>"
      },
      "dewPoint": 123
    },
    "forecast": [
      {
        "date": "<string>",
        "day": "<string>",
        "low": 123,
        "high": 123,
        "condition": "<string>",
        "icon": "<string>",
        "conditionCode": 123,
        "precipitationChance": 123
      }
    ],
    "meta": {
      "provider": "<string>",
      "language": "<string>",
      "fetchedAt": "<string>"
    },
    "airQuality": {
      "aqi": "<string>",
      "pm2_5": "<string>",
      "pm10": "<string>",
      "no2": "<string>",
      "o3": "<string>",
      "co": "<string>"
    }
  }
}
{
"success": true,
"code": 123,
"message": "<string>"
}
{
"success": true,
"code": 123,
"message": "<string>"
}
{
"success": true,
"code": 123,
"message": "<string>"
}
{
"success": true,
"code": 123,
"message": "<string>",
"data": [
{
"path": "<string>",
"message": "<string>"
}
]
}
{
"success": true,
"code": 123,
"message": "<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