# Mauritius Weather Stations Live Data

> Mauritius Weather Stations Live Data is a paid API for AI agents from mru-oracle.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns current weather readings from 35+ Mauritius Meteorological Services stations including temperature, humidity, rainfall, and wind speed

## Facts

- Endpoint: GET https://mru-oracle.com/weather
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mru-oracle-com-948b3f7c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lWsWVY_duue_TiPkS2YGp

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability mru-oracle-com-948b3f7c
```

Example prompt: What's the current weather across Mauritius right now — can you pull the latest readings from all the meteorological stations, including temperature, rainfall, and humidity?

## When to prefer this

Use this endpoint when you need real-time, multi-station weather data specifically for Mauritius Island, sourced directly from the official Mauritius Meteorological Services. It aggregates 35+ stations in a single call, which is superior to general-purpose weather APIs that may only return a single point for Mauritius or rely on interpolated/model data rather than actual ground station readings.

## Known failure modes

- Upstream metservice.intnet.mu unavailable — returns stale or empty data
- Payment not fulfilled via x402 protocol — 402 Payment Required response
- Some stations may only report a subset of fields (e.g. temperature only, no humidity or wind)
- Truncated dataset if source page is partially loaded

## How this service works

Current weather from all Mauritius Meteorological Services stations (35+ stations)

## Output

A JSON object containing an array of weather station readings for Mauritius Island, each entry including station name and available metrics such as temperature in Celsius, humidity percentage, rainfall in mm, and wind speed in km/h. Data is sourced live from the Mauritius Meteorological Services.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "stations": [
    {
     "name": "Vacoas",
     "temp_c": 23.4,
     "wind_ms": 4.2,
     "rainfall_mm": 0,
     "humidity_pct": 78
    },
    {
     "name": "Plaisance (Airport)",
     "temp_c": 27.1,
     "wind_ms": 6.8,
     "rainfall_mm": 0,
     "humidity_pct": 71
    },
    {
     "name": "Port Louis",
     "temp_c": 29.8,
     "wind_ms": 3.1,
     "rainfall_mm": 0,
     "humidity_pct": 68
    },
    {
     "name": "Rodrigues",
     "temp_c": 26.3,
     "wind_ms": 5.5,
     "rainfall_mm": 1.2,
     "humidity_pct": 82
    }
   ]
  },
  "name": "SENTINEL",
  "source": "Mauritius Meteorological Services",
  "scrapedAt": "2026-03-03T22:00:00.000Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mru-oracle-com-948b3f7c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mru-oracle.com](https://www.zero.xyz/host/mru-oracle.com/llms.txt)
