# 01Mind Real-Time Weather Data API

> 01Mind Real-Time Weather Data API is a paid API for AI agents from 01mind.net, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Fetches real-time weather data for a specified location via a per-call paid API endpoint

## Facts

- Endpoint: POST https://01mind.net/purchase/weather-data-api
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/01mind-real-time-weather-data-api-ee73ba8c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DdK0de8A2Dvpjv0d1h_5_

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 01mind-real-time-weather-data-api-ee73ba8c -d '<json body>'
```

Example prompt: What's the current weather in Chicago right now — temperature, conditions, everything?

## When to prefer this

Choose this endpoint when you need real-time, live weather data within an agentic workflow that supports x402 micropayments, especially when cost-per-call economics matter (at $0.002/call). It is well-suited for agent pipelines on platforms like agentic.market or bazaar that already handle x402 payment flows, and when you want a pre-verified, catalogued API rather than integrating a raw weather provider directly.

## Known failure modes

- Missing or malformed location input returns a 400 error
- Invalid body type or method returns a schema validation error
- Unavailable weather data for obscure locations may return empty or null fields
- Payment failure (insufficient USDC balance) results in a 402 Payment Required error
- Network or provider downtime may yield a 503 or timeout response

## How this service works

Real-time and forecast weather data by location, returned as clean agent-readable JSON, via 01Mind. Pay-per-call, no subscription.

## Output

Returns real-time weather data for the queried location, including current temperature, weather conditions, and related meteorological metrics as a structured JSON response.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/01mind-real-time-weather-data-api-ee73ba8c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 01mind.net](https://www.zero.xyz/host/01mind.net/llms.txt)
