x402 List

x402 Protocol Service Directory

PayAPI Market Weather Data API

Data PAYMENT-READY imported

payment-ready until 2026-08-20

imported from the x402 Bazaar, not submitted by the operator · own this service? claim it · or ask to be removed

Weather API returning current conditions, forecasts up to 16 days, historical data and air quality for any location worldwide, backed by Open-Meteo data, at $0.001 per call in USDC on Base.

Pay from $0.001 per request in USDC on Base, settled onchain via the x402 protocol, no signup, no API key needed.

first settlement 2026-04-04 · $0.58 all-time · settled via coinbase

BASE URL https://weather.payapi.market ENDPOINTS 1 NETWORK Base ASSET USDC MEMBER SINCE 2026-07-20 MONITORED SINCE 2026-07-20

ASSESSMENT

updated 3h ago

Evidence-backed signals, not a single score. Click any chip for the proof. Measured values stay read-only; unknown is honest.

reliability 100%
uptime 24h
100%
uptime 7d
100%
uptime 30d
100%
uptime 90d
100%
response p95
2519ms
avg response
1197ms
total checks
2,145

Measured on the unpaid 402 handshake, not the paid call. A service can 402 correctly and still fail after payment.

compliance A (14/14)

14 of 14 x402 conformance checks pass. Full checklist below.

jump to compliance checklist

price $0.001 (p9 in Data)
price (min)
$0.001
category percentile (min)
p9 in Data
endpoints / prices
1 / 1
model
flat
stability
100%
risk clean

No deterministic risk flag. Risk fires only on an exact blocklist match, or a reserved-brand name with a mismatched verified payTo. Never from low uptime, a high price, or a model guess.

domain age
-
registrar
-
hosting
custom
domain created
---

Identity facts, not a risk score.

traction $0.1191666667 30d · 84 buyers
volume 30d
$0.1191666667
buyers 30d
84
settlements 30d
275
first settlement
2026-04-04
last settlement
2026-08-12
top buyer share
35% of 30d volume
trend 7d vs 30d
1.11x the 30d daily rate
networks
eip155:8453
volume all-time
$0.58
settlements all-time
1,392
median settlement 30d
$0.001
max settlement 30d
$0.04
settled via
coinbase ($0.71, 275 tx)

Attributed pro-quota: this payout address is shared, so volume is the operator-level figure divided by the services sharing it, while buyer and transaction counts stay whole. A declared convention, not an individually observed measure, and still a conservative undercount.

Currently sharing this payout address with PayAPI Market UK Company Data API, PayAPI Market UK Finance Data API, PayAPI Market UK Property Data API, PayAPI Market UK Vehicle Data API, UK HMO Licence API.

Top buyer share is a concentration signal, not part of the ranking score.

WHAT IT DOES

ai-derived

Provides weather data including current conditions, forecasts, historical data, and air quality information.

category
weather-data
in
body
auth
none
weatherforecasthistorical-dataair-quality

AI-generated summary. The measured data is never altered by it.

ENDPOINTS

Service endpoints with HTTP method, path, description, pricing, and network
METHOD PATH DESCRIPTION PRICE NETWORK ASSET 402 CHANNEL
POST /current $0.001 Base USDC header
1 endpoints

REQUEST / RESPONSE EXAMPLE

An unpaid request to POST /current returns HTTP 402 with the payment terms. Settle onchain via your facilitator, then retry with the X-Payment header.

// request
curl -i -X POST 'https://weather.payapi.market/current'
// 402 response (captured by monitor) · 1 payload · click to expand
[
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0xFFc458dB291b4ABcE020fE3de4f91F2770E537b1",
        "amount": "1000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      }
    ],
    "resource": {
      "url": "https://weather.payapi.market/current",
      "description": "Current weather conditions for any global location — temperature, feels-like, humidity, precipitation, wind, and human-readable weather description."
    },
    "extensions": {
      "bazaar": {
        "info": {
          "input": {
            "body": {
              "location": "London"
            },
            "type": "http",
            "method": "POST",
            "bodyType": "json"
          },
          "output": {
            "type": "json",
            "example": {
              "cached": false,
              "current": {
                "time": "2026-05-02T10:00",
                "rain_mm": 0,
                "timezone": "Europe/London",
                "feels_like_c": 10.1,
                "humidity_pct": 78,
                "weather_code": 2,
                "temperature_c": 12.4,
                "wind_speed_kmh": 14.3,
                "precipitation_mm": 0,
                "wind_direction_deg": 230,
                "weather_description": "Partly cloudy"
              },
              "location": {
                "name": "London",
                "country": "United Kingdom",
                "latitude": 51.50853,
                "longitude": -0.12574
              }
            }
          }
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "required": [
            "input"
          ],
          "properties": {
            "input": {
              "type": "object",
              "required": [
                "type",
                "method",
                "bodyType",
                "body"
              ],
              "properties": {
                "body": {
                  "type": "object",
                  "required": [
                    "location"
                  ],
                  "properties": {
                    "latitude": {
                      "type": [
                        "number",
                        "null"
                      ],
                      "description": "Optional latitude override (decimal degrees, -90 to 90)."
                    },
                    "location": {
                      "type": "string",
                      "description": "City or place name to fetch weather for (e.g. 'London', 'New York')."
                    },
                    "longitude": {
                      "type": [
                        "number",
                        "null"
                      ],
                      "description": "Optional longitude override (decimal degrees, -180 to 180)."
                    }
                  }
                },
                "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",
                  "properties": {
                    "cached": {
                      "type": "boolean"
                    },
                    "current": {
                      "type": "object",
                      "description": "Temperature, feels-like, humidity, precipitation, wind, weather code/description."
                    },
                    "location": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "x402Version": 2
  }
]

OVER TIME

All charts use the 90d selector; each series spans only the dates it has data for. Every series is also served as JSON at /api/v1/services/payapi-market-weather-data-api/price, /scores, /volume and /buyers. On-chain volume and distinct buyers are measured over the service's settlement address and are a conservative undercount (only settlements that reach a measured facilitator are counted). The on-chain series roll up hourly, so the latest day can be up to about an hour behind; distinct buyers are counted per payout address, so a service that settles to more than one address is an upper bound.

UPTIME
07-20 · uptime 100.0% · 1242ms avg07-21 · uptime 100.0% · 998ms avg07-22 · uptime 100.0% · 922ms avg07-23 · uptime 100.0% · 926ms avg07-24 · uptime 100.0% · 1075ms avg07-25 · uptime 100.0% · 1323ms avg07-26 · uptime 100.0% · 1233ms avg07-27 · uptime 100.0% · 1209ms avg07-28 · uptime 100.0% · 980ms avg07-29 · uptime 100.0% · 1094ms avg07-30 · uptime 100.0% · 1125ms avg07-31 · uptime 100.0% · 1259ms avg08-01 · uptime 100.0% · 1232ms avg08-02 · uptime 100.0% · 1310ms avg08-03 · uptime 100.0% · 1192ms avg08-04 · uptime 100.0% · 1132ms avg08-05 · uptime 100.0% · 1390ms avg08-06 · uptime 100.0% · 1551ms avg08-07 · uptime 100.0% · 1428ms avg08-08 · uptime 100.0% · 1010ms avg08-09 · uptime 100.0% · 1291ms avg08-10 · uptime 100.0% · 1196ms avg08-11 · uptime 100.0% · 1637ms avg08-12 · uptime 100.0% · 999ms avg08-13 · uptime 100.0% · 1123ms avg07-2008-13
90d UPTIME 100%
RESPONSE TIME
07-20 · 1242ms avg07-20 · 1242ms avg07-21 · 998ms avg07-21 · 998ms avg07-22 · 922ms avg07-22 · 922ms avg07-23 · 926ms avg07-23 · 926ms avg07-24 · 1075ms avg07-24 · 1075ms avg07-25 · 1323ms avg07-25 · 1323ms avg07-26 · 1233ms avg07-26 · 1233ms avg07-27 · 1209ms avg07-27 · 1209ms avg07-28 · 980ms avg07-28 · 980ms avg07-29 · 1094ms avg07-29 · 1094ms avg07-30 · 1125ms avg07-30 · 1125ms avg07-31 · 1259ms avg07-31 · 1259ms avg08-01 · 1232ms avg08-01 · 1232ms avg08-02 · 1310ms avg08-02 · 1310ms avg08-03 · 1192ms avg08-03 · 1192ms avg08-04 · 1132ms avg08-04 · 1132ms avg08-05 · 1390ms avg08-05 · 1390ms avg08-06 · 1551ms avg08-06 · 1551ms avg08-07 · 1428ms avg08-07 · 1428ms avg08-08 · 1010ms avg08-08 · 1010ms avg08-09 · 1291ms avg08-09 · 1291ms avg08-10 · 1196ms avg08-10 · 1196ms avg08-11 · 1637ms avg08-11 · 1637ms avg08-12 · 999ms avg08-12 · 999ms avg08-13 · 1123ms avg08-13 · 1123ms avg07-2008-13
AVG RESP 1195ms
PRICE (captured 402, USD)
07-20 · $0.00108-13 · $0.001$0.00107-2008-13
SUB-SCORES (uptime + x402 compliance)
07-20 uptime: 100.0% compliance: 100% checks07-21 uptime: 100.0% compliance: 100% checks07-22 uptime: 100.0% compliance: 100% checks07-23 uptime: 100.0% compliance: 100% checks07-24 uptime: 100.0% compliance: 100% checks07-25 uptime: 100.0% compliance: 100% checks07-26 uptime: 100.0% compliance: 100% checks07-27 uptime: 100.0% compliance: 100% checks07-28 uptime: 100.0% compliance: 100% checks07-29 uptime: 100.0% compliance: 100% checks07-30 uptime: 100.0% compliance: 100% checks07-31 uptime: 100.0% compliance: 100% checks08-01 uptime: 100.0% compliance: 100% checks08-02 uptime: 100.0% compliance: 100% checks08-03 uptime: 100.0% compliance: 100% checks08-04 uptime: 100.0% compliance: 100% checks08-05 uptime: 100.0% compliance: 100% checks08-06 uptime: 100.0% compliance: 100% checks08-07 uptime: 100.0% compliance: 100% checks08-08 uptime: 100.0% compliance: 100% checks08-09 uptime: 100.0% compliance: 100% checks08-10 uptime: 100.0% compliance: 100% checks08-11 uptime: 100.0% compliance: 100% checks08-12 uptime: 100.0% compliance: 100% checks08-13 uptime: 100.0% compliance: 100% checksuptimecompliance07-2008-13

checklist grew 11->14 on 2026-07-28; a step here is a metric change, not a regression

PILLARS OVER TIME (measured)

Measured site and economics pillars from the assessment history, so the latest value shown elsewhere on this page reads as a point on a trend rather than a permanent state.

VOLUME (on-chain settlement, USD)
05-16 · $0.0405-18 · $0.0005-19 · $0.0305-20 · $0.0005-21 · $0.0405-22 · $0.0105-27 · $0.0005-28 · $0.0105-29 · $0.0005-30 · $0.0105-31 · $0.0206-02 · $0.0006-03 · $0.0206-04 · $0.0906-05 · $0.1506-06 · $0.0406-08 · $0.0006-09 · $0.0106-10 · $0.0106-11 · $0.0206-12 · $0.0706-13 · $0.0006-15 · $0.0306-16 · $0.0006-17 · $0.0006-18 · $0.1006-19 · $0.0106-20 · $0.0406-21 · $0.0106-22 · $0.0706-23 · $0.0506-24 · $0.0806-25 · $0.0606-26 · $0.0206-27 · $0.0306-28 · $0.0406-29 · $0.0406-30 · $0.0407-01 · $0.0207-02 · $0.0107-03 · $0.0107-04 · $0.0507-05 · $0.0107-06 · $0.3707-07 · $0.0207-08 · $0.0607-09 · $0.0107-10 · $0.2007-11 · $0.0207-12 · $0.1107-13 · $0.0007-14 · $0.0307-15 · $0.0107-16 · $0.0207-17 · $0.0007-18 · $0.0807-19 · $0.0707-20 · $0.0807-21 · $0.0007-22 · $0.0307-23 · $0.0107-24 · $0.0007-25 · $0.0107-26 · $0.0107-27 · $0.0207-28 · $0.0207-29 · $0.0107-30 · $0.0107-31 · $0.0108-01 · $0.0108-03 · $0.0208-04 · $0.0108-05 · $0.1108-06 · $0.0608-07 · $0.0008-08 · $0.0108-09 · $0.0108-10 · $0.0008-11 · $0.0708-12 · $0.03peak $0.3705-1608-12

Shared payout address (5 other services). These bars are the full shared address (operator-level), so do not sum them across the services that share it. Where a per-service figure is attributed, the assessment block and the ranking, it is the address total divided pro-quota by the 6 services sharing it: a declared convention, not an individually observed measure.

DISTINCT BUYERS
05-16 · 1 buyer05-18 · 1 buyer05-19 · 2 buyers05-20 · 1 buyer05-21 · 3 buyers05-22 · 3 buyers05-27 · 1 buyer05-28 · 1 buyer05-29 · 2 buyers05-30 · 2 buyers05-31 · 1 buyer06-02 · 1 buyer06-03 · 2 buyers06-04 · 2 buyers06-05 · 3 buyers06-06 · 1 buyer06-08 · 3 buyers06-09 · 2 buyers06-10 · 3 buyers06-11 · 6 buyers06-12 · 3 buyers06-13 · 3 buyers06-15 · 2 buyers06-16 · 1 buyer06-17 · 1 buyer06-18 · 1 buyer06-19 · 6 buyers06-20 · 1 buyer06-21 · 2 buyers06-22 · 3 buyers06-23 · 6 buyers06-24 · 8 buyers06-25 · 6 buyers06-26 · 5 buyers06-27 · 10 buyers06-28 · 22 buyers06-29 · 26 buyers06-30 · 25 buyers07-01 · 16 buyers07-02 · 5 buyers07-03 · 5 buyers07-04 · 15 buyers07-05 · 1 buyer07-06 · 1 buyer07-07 · 6 buyers07-08 · 12 buyers07-09 · 8 buyers07-10 · 9 buyers07-11 · 16 buyers07-12 · 6 buyers07-13 · 1 buyer07-14 · 4 buyers07-15 · 6 buyers07-16 · 3 buyers07-17 · 3 buyers07-18 · 7 buyers07-19 · 3 buyers07-20 · 3 buyers07-21 · 1 buyer07-22 · 4 buyers07-23 · 9 buyers07-24 · 2 buyers07-25 · 4 buyers07-26 · 3 buyers07-27 · 3 buyers07-28 · 2 buyers07-29 · 9 buyers07-30 · 9 buyers07-31 · 6 buyers08-01 · 8 buyers08-03 · 2 buyers08-04 · 4 buyers08-05 · 3 buyers08-06 · 2 buyers08-07 · 3 buyers08-08 · 1 buyer08-09 · 5 buyers08-10 · 1 buyer08-11 · 6 buyers08-12 · 3 buyerspeak 26 buyers05-1608-12

Shared payout address (5 other services). These bars are the full shared address (operator-level), so do not sum them across the services that share it. Per-service buyer and transaction counts are shown whole (integers), not divided; only volume is attributed pro-quota. A declared convention, not an individually observed measure.

COMPLIANCE

14/14 checks pass · grade A

last 402 captured 2026-07-20 · last up 2026-08-13

  • 402 payload captured
  • accepts[] array present
  • payTo address recoverable
  • payTo at accepts[0].payTo (conformant shape)
  • payTo is a valid on-chain address
  • atomic price declared
  • atomic price in a sane range
  • asset (token) address declared
  • network resolves to CAIP-2
  • payment scheme declared
  • served over HTTPS
  • declares the current x402 version (2)
  • EIP-712 domain parameters present on every EVM entry
  • x402 v2 envelope delivered in the payment-required header

SITE PILLARS

  • homepage reachable
  • openapi doc
  • pricing page
  • llms.txt
  • robots.txt
  • terms page
recent checks (18) live · click to expand
TIME STATUS RESP CAUSE
● OK 1060ms
● OK 782ms
● OK 864ms
● OK 610ms
● OK 1075ms
● OK 735ms
● OK 1021ms
● OK 852ms
● OK 735ms
● OK 675ms
● OK 961ms
● OK 703ms
● OK 688ms
● OK 1043ms
● SLOW 1925ms
● OK 685ms
● OK 1072ms
● OK 855ms

EMBED THIS BADGE

Show that PayAPI Market Weather Data API is monitored on x402-list. Paste this on your site or README, it links back to this live listing.

PayAPI Market Weather Data API listed on x402-list
status
PayAPI Market Weather Data API uptime on x402-list
live uptime
// HTML
<a href="https://x402-list.com/services/payapi-market-weather-data-api?utm_source=badge&utm_medium=referral&utm_campaign=embed">
  <img src="https://x402-list.com/badge/payapi-market-weather-data-api.svg" alt="PayAPI Market Weather Data API listed on x402-list" height="28">
</a>
// Markdown
[![PayAPI Market Weather Data API on x402-list](https://x402-list.com/badge/payapi-market-weather-data-api.svg)](https://x402-list.com/services/payapi-market-weather-data-api?utm_source=badge&utm_medium=referral&utm_campaign=embed)
// HTML · live uptime variant
<a href="https://x402-list.com/services/payapi-market-weather-data-api?utm_source=badge&utm_medium=referral&utm_campaign=embed">
  <img src="https://x402-list.com/badge/payapi-market-weather-data-api.svg?data=uptime" alt="PayAPI Market Weather Data API uptime on x402-list" height="28">
</a>

RUN THIS SERVICE?

Keep this listing accurate: propose changes to the name, description, website, category or add new endpoints to monitor. Ownership is verified with a domain proof and every change is reviewed manually; measured data stays read-only.

[ update this listing ]

Earn the verified tier: x402list pays a real call to this endpoint and, if it delivers, the service is delivery-verified. The fee covers the cost of the probe, not the badge; there is no refund if the call does not deliver. Agent and API only, no in-browser signing. See /api.

[ verify this service ($0.25) ]

To request delisting, email info@x402-list.com or update your listing at /services/payapi-market-weather-data-api/update.