# Weather Alert Status Lookup

> Weather Alert Status Lookup is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Retrieves stored detail for a single active weather alert by entity ID, or lists all tracked weather alert entities.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/weather-alerts/status
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/weather-alert-status-lookup-96be4c13
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fvH50DVAxo1I2ObjNWO8g

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 weather-alert-status-lookup-96be4c13
```

Example prompt: Can you pull up the stored details for the active weather alert with ID 'alert-12345'? I want to see everything being tracked about it.

## When to prefer this

Use this endpoint when you need to retrieve stored details about a specific active weather alert by its entity ID, or when you need to enumerate all currently tracked weather alert entities. Prefer this over a live weather API when you want pre-fetched, cached alert state managed by this oracle service.

## Known failure modes

- Invalid or non-existent entity ID returns empty or error response
- No active alerts tracked returns empty list
- Malformed query parameter results in 400-level error
- Payment not processed results in 402 response
- Service downtime returns 5xx error

## How this service works

Stored detail for a single active alert.

## Output

Returns a JSON object containing stored details for a single active weather alert entity (when an ID is provided), including the entity object with alert-specific data. Without an ID, returns a list of all currently tracked weather alert entities.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "id": {
       "type": "string",
       "description": "entityId to look up; omit to list tracked entities"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "entity": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/weather-alert-status-lookup-96be4c13/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oracles-production.up.railway.app](https://www.zero.xyz/host/oracles-production.up.railway.app/llms.txt)
