translate Englishattach_moneyUSDQuick AI Login
emoji_food_beverage Exploremaps Maps Listcurrency_exchange Live Currency Ratesfoggy Global Weather Forecastmonitor_heart Commodities Futures Marketapi API Docs

Live Weather Monitoring API Documentation

Hyperlocal monitoring for weather, with accurate data for criminality and infrastructure. This API provides accurate, up-to-date local details for Indian postal codes for integrating into your applications for Indian markets.

Below are the endpoints for accessing local datasets. Learn how to integrate the API into your application.

Route Parameters:

  • :region *Please check location table here
    (e.g., "SOUTH|ARAB|EAST|NORD").

Response based on params:

{
  "success": true,
  "data": {
    "state": {
      "population": {
        "people": 123144223,
        "population_density": 365,
        "area": 307713,
        "urban_population": 45.22,
        "rural_population": 54.78,
        "gender_ratio": 925,
        "human_development_index": 0.624,
        "life_expectancy": {
          "infant_mortality_rate_per_1000": 29,
          "male": 66.2,
          "female": 69.8
        },
        "literacy_rate": {
          "total": 84.11,
          "male": 88.87,
          "female": 79.9
        },
        "official_languages": [
          "Marathi"
        ],
        "spoken_languages": [
          "Marathi",
          "Hindi",
          "English",
          "Urdu"
        ],
        "religions": {
          "Hinduism": 79.83,
          "Islam": 11.53,
          "Buddhism": 5.67,
          "Other": 2.97
        }
      },
      "economy": {
        "unit": "USD",
        "annual_tourists": 67000000,
        "gdp_nominal": {
          "value": 459.8,
          "year": 2023
        },
        "gdp_per_capita": {
          "value": 3727,
          "year": 2023
        },
        "exports": {
          "total_value_billion": 39
        }
      },
      "climate": {
        "type": "Tropical Wet and Dry",
        "annual_rainfall_mm": 2500,
        "avg_temperature": {
          "summer": "34",
          "winter": "19",
          "format": "°C"
        }
      },
      "infrastructure": {
        "electricity_access": "100%",
        "telecom_connectivity": "96%",
        "internet_users": {
          "percentage_of_population": 58,
          "total_users_million": 71.6
        }
      },
      "service": true,
      "info": "Economic Statistics limited to viable Indian territories or states!"
    },
    "district": {
      "name": "Thane",
      "weather": {
        "base": {
          "lon": 73.396,
          "lat": 19.4115
        },
        "weather": {
          "id": 804,
          "main": "Clouds",
          "description": "overcast clouds",
          "icon": "04d"
        },
        "readings": {
          "temp": 25.65,
          "feels_like": 26.52,
          "temp_min": 25.65,
          "temp_max": 25.65,
          "pressure": 1009,
          "humidity": 86,
          "sea_level": 1009,
          "grnd_level": 1001
        },
        "visibility": 10000,
        "wind": {
          "speed": 0.62,
          "deg": 48,
          "gust": 0.86
        },
        "clouds": 100,
        "sunrise": 1728521952,
        "sunset": 1728564435
      },
      "people": "mix",
      "criminality": "mid"
    }
  }
}

GET

check_boxAllcheck_box_outline_blankWeathercheck_box_outline_blankReadingscheck_box_outline_blankWind

This endpoint provides the current hyperlocal details for the requested postal codes.

JavaScript
Python
Php
Java
c#
Ruby
Go
Swift
<?php

function fetchData() {
    // API configuration
    $baseUrl = 'https://weathergrid.api.mapwale.com/v1';
    $params = array(
        'region' => 'YOUR_REGION'  // Replace with actual region value
    );
    $queryParams = {"zip":"401101","show":"all"};
    
    try {
        // Build URL
        $url = $baseUrl;
        foreach (["region"] as $param) {
            $url .= '/' . urlencode($params[$param]);
        }
        $url .= '?' . http_build_query($queryParams);
        
        // Initialize cURL
        $ch = curl_init();
        
        // Set cURL options
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($ch, CURLOPT_HTTPHEADER);
        
        if ('GET' === 'POST' || 'GET' === 'PUT') {
            curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode({}));
            curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET');
        }
        
        // Execute request
        $response = curl_exec($ch);
        $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
        
        // Check for errors
        if ($httpCode >= 400) {
            throw new Exception("HTTP Error: " . $httpCode);
        }
        
        curl_close($ch);
        return json_decode($response, true);
    } catch (Exception $e) {
        echo "Error: " . $e->getMessage();
        return null;
    }
}

// Example usage
$result = fetchData();
echo json_encode($result, JSON_PRETTY_PRINT);

Query Parameters:

  • zip Specify which data to show
    (e.g., 401101).
  • show Comma-separated list of datasets you need
    (e.g., "all"|"weather,readings,wind").