# Nuclear Preparedness Instructions API

> Nuclear Preparedness Instructions API is a paid API for AI agents from x402endpoint-924155002144.us-west2.run.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns nuclear preparedness instructions and guidance for a given query topic

## Facts

- Endpoint: GET https://x402endpoint-924155002144.us-west2.run.app/nuclear-prep/:query
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nuclear-preparedness-instructions-api-e3107071
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TZDyajhb6XRCbGinTBAvH

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 nuclear-preparedness-instructions-api-e3107071
```

Example prompt: What are the nuclear preparedness steps I should follow for sheltering in place during a nuclear emergency?

## When to prefer this

Use this endpoint when you need on-demand nuclear preparedness or radiation safety instructions keyed to a specific topic or scenario query. Prefer it over static documents when you need structured, query-specific guidance for civil defense or emergency planning contexts.

## Known failure modes

- Missing or empty query path parameter returns an error
- Unsupported or ambiguous query slug may return generic or no results
- Payment required (402) if USDC payment not attached
- Service unavailable if backend is down or overloaded

## How this service works

Nuclear preparedness instructions for a query.

## Output

The agent receives a text-based response containing nuclear preparedness instructions relevant to the submitted query, such as shelter-in-place procedures, supply recommendations, evacuation guidance, or radiation safety protocols.

## 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",
     "required": [
      "query"
     ],
     "properties": {
      "query": {
       "type": "string",
       "description": "query slug"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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/nuclear-preparedness-instructions-api-e3107071/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402endpoint-924155002144.us-west2.run.app](https://www.zero.xyz/host/x402endpoint-924155002144.us-west2.run.app/llms.txt)
