mirrored listing x402 eip155:8453solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp

Real-time water data from USGS NWIS stream / river / groundwater gauges within a bounding

Real-time water data from USGS NWIS stream / river / groundwater gauges within a bounding box around lat/lon. Returns each site's latest reading per requested variable: streamflow (00060, ft³/s), gage height (00065, ft), water temperature (00010, °C), precipitation (00045, in), and others. Each reading: site code + name, lat/lon, variable name + description + unit, value (or null if no data / sentinel), qualifier codes (e.g., 'P' = provisional, 'A' = approved), observed timestamp. Free public-domain data from waterservices.usgs.gov.

Do you run 2s.io? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
6000 (raw units)
price
2
calls / 30d
2
unique payers
2026-09-09
updated

Provider

2s.io · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x2b6D4988Db4723E6908Db86Ab2b8dFBc51FC32C5",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "6000",
    "maxTimeoutSeconds": 60
  },
  {
    "scheme": "exact",
    "network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
    "payTo": "TW6ntaGzvj63ZgPjszd4FCGmVTGfzv1MAYZbjYcyWhn",
    "asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
    "amount": "6000",
    "maxTimeoutSeconds": 60
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "method": "GET",
        "queryParams": {
          "lat": -90,
          "limit": 25,
          "lon": -180,
          "radius": 0.5,
          "variables": "example"
        },
        "type": "http"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "properties": {
            "method": {
              "const": "GET"
            },
            "queryParams": {
              "additionalProperties": false,
              "properties": {
                "lat": {
                  "description": "Center latitude (decimal degrees).",
                  "maximum": 90,
                  "minimum": -90,
                  "type": "number"
                },
                "limit": {
                  "default": 25,
                  "description": "Max readings to return (1-100). Default 25.",
                  "maximum": 100,
                  "minimum": 1,
                  "type": "integer"
                },
                "lon": {
                  "description": "Center longitude (decimal degrees).",
                  "maximum": 180,
                  "minimum": -180,
                  "type": "number"
                },
                "radius": {
                  "default": 0.5,
                  "description": "Half-side of bounding box, in decimal degrees. Default 0.5 (~35 mi).",
                  "maximum": 2,
                  "minimum": 0.05,
                  "type": "number"
                },
                "variables": {
                  "description": "Comma-separated USGS parameter codes (5-digit). Default \"00060,00065,00010\" (streamflow, gage height, water temp).",
                  "type": "string"
                }
              },
              "required": [
                "lat",
                "lon"
              ],
              "type": "object"
            },
            "type": {
              "const": "http"
            }
          },
          "required": [
            "type",
            "method",
            "queryParams"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://2s.io/api/gov/usgs-water"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://2s.io/api/gov/usgs-water");
if (res.status === 402) {
  const { accepts } = await res.json();
  // pay one of accepts[] via an x402 client, then retry with the payment header
}

Python

import httpx
res = httpx.get("https://2s.io/api/gov/usgs-water")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/6635.json, and this resource appears in /discovery/resources and /discovery/search.