# Suverse Air Quality Current

> Suverse Air Quality Current is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.055/call, status unknown (last checked 2026-09-14).

Returns real-time air quality data (PM2.5, PM10, carbon monoxide, ozone) for any geographic coordinate via Open-Meteo, with no API key required.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-air-quality-current
- Price: $0.055/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-air-quality-current-f5735d8f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ywRuFKnGGvNwhEYvnYEto

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 suverse-air-quality-current-f5735d8f -d '<json body>'
```

Example prompt: What's the current air quality at coordinates 40.7128° N, 74.0060° W? I need PM2.5, PM10, ozone, and carbon monoxide levels.

## When to prefer this

Choose this endpoint when you need keyless, pay-per-call air quality data for any global coordinate without managing an API subscription. It is ideal for agents that need occasional or on-demand air quality lookups rather than high-volume continuous polling. Prefer this over direct Open-Meteo integration when operating in an x402 payment-native environment or when you want to avoid managing API credentials.

## Known failure modes

- Invalid or out-of-range latitude/longitude values result in an error response
- Coordinates over open ocean with no atmospheric model coverage may return null or missing values
- Malformed request body or missing required fields returns a 400-level error
- Upstream Open-Meteo service unavailability may cause timeouts or 503 errors
- Payment failure or insufficient balance returns a 402 Payment Required response

## How this service works

Current air quality for any coordinate from Open-Meteo. Returns PM2.5, PM10, carbon monoxide and ozone with units. Keyless, global coverage. Useful for health, outdoor activity and environmental dashboards.

## Output

Returns current air quality measurements for the requested coordinate, including PM2.5 (fine particulate matter), PM10 (coarse particulate matter), carbon monoxide concentration, and ozone levels, each accompanied by their respective measurement units. Data is sourced from Open-Meteo's global atmospheric model coverage.

## 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/suverse-air-quality-current-f5735d8f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
