# padelmaps.org Current Weather

> padelmaps.org Current Weather is a paid API for AI agents from padelmaps.org, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns current weather conditions for a given location

## Facts

- Endpoint: POST https://padelmaps.org/api/x402-tools/weather/current
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/padelmaps-org-3b63c1de
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EVa2hyEyEJukraftNAW-V

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 padelmaps-org-3b63c1de -d '<json body>'
```

Example prompt: What's the current weather in Madrid right now — temperature, conditions, and wind?

## When to prefer this

Use this endpoint when you need real-time current weather conditions for a specific location and are operating in an x402 micropayment environment. Suitable for single location lookups at $0.01 USDC per call.

## Known failure modes

- Invalid or unrecognized location name returns an error
- Network timeout or service unavailability
- Missing required location parameter returns a 400-level error
- Payment failure via x402 protocol blocks the request

## How this service works

Get current weather for a location

## Output

Returns current weather data for the specified location, likely including temperature, weather conditions (e.g. sunny, cloudy, rain), humidity, and wind speed.

## Example request

```json
{
 "input": {
  "body": {
   "units": "metric",
   "country": "GB",
   "location": "London"
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "location"
     ],
     "properties": {
      "units": {
       "type": "string",
       "description": "metric (default), imperial, or kelvin"
      },
      "country": {
       "type": "string",
       "description": "ISO country code to disambiguate (e.g. 'MX', 'ES', 'US')"
      },
      "location": {
       "type": "string",
       "description": "City name. Aliases: 'city'. E.g. 'London', 'Tokyo'"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "cached": {
       "type": "boolean"
      },
      "humidity": {
       "type": "number"
      },
      "location": {
       "type": "string"
      },
      "feels_like": {
       "type": "number"
      },
      "wind_speed": {
       "type": "number"
      },
      "description": {
       "type": "string"
      },
      "temperature": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/padelmaps-org-3b63c1de/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from padelmaps.org](https://www.zero.xyz/host/padelmaps.org/llms.txt)
