# GoCreative Weather Alerts API

> GoCreative Weather Alerts API is a paid API for AI agents from api.gocreativeai.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-08).

Returns active weather alerts for a given location or area identifier via a pay-per-call endpoint backed by official sources

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/weather-alerts/%7Barg%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-08
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-weather-alerts-api-7d0501c4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2cNCZlNRKZfH_0Gorxy9d

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 gocreative-weather-alerts-api-7d0501c4
```

Example prompt: Are there any active weather alerts or severe weather warnings right now for Texas? Check official NWS sources and give me all current watches, warnings, and advisories.

## When to prefer this

Choose this endpoint when you need official, real-time weather alert data from NWS/NOAA without requiring API key setup or signup, and when paying $0.01 USDC per call via x402 on Base is acceptable. Ideal for AI agents that need to react to severe weather conditions, integrate emergency alert data into workflows, or check hazard status for a given region on demand.

## Known failure modes

- Invalid or unrecognized area/zone identifier returns an error or empty result
- No active alerts for the queried area returns an empty alerts array
- Malformed input query parameter returns a 400-level error
- Payment failure (insufficient USDC balance) results in 402 Payment Required response
- Upstream NWS/NOAA data source unavailability causes 5xx error

## How this service works

Keyless, pay-per-call compliance &amp; regulated-data API for AI agents — OFAC wallet + sanctions/PEP + KYB screening, SEC filings, FRED economics, FDA recalls, federal awards, plus continuous monitoring. USDC on Base/Solana via x402, native MCP. No API key, no signup.

## Output

Returns a list of active weather alerts for the queried location or area, including alert type (watch, warning, advisory), severity level, headline, description, affected zones, and effective/expiration timestamps — sourced from official NWS/NOAA data.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "endpoint argument"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gocreative-weather-alerts-api-7d0501c4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.gocreativeai.com](https://www.zero.xyz/host/api.gocreativeai.com/llms.txt)
