# Deadman Switch Ping — Onchain & Trading Intelligence Platform

> Deadman Switch Ping — Onchain & Trading Intelligence Platform is a paid API for AI agents from x402-services-production.up.railway.app, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Pings a deadman switch by ID and secret token to confirm the agent is still alive and reset the timer

## Facts

- Endpoint: POST https://x402-services-production.up.railway.app/api/deadman/ping
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/deadman-switch-ping-onchain-trading-intelligence-platform-c1f442ea
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aYm2XbvvHBYZfkP5punjT

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 deadman-switch-ping-onchain-trading-intelligence-platform-c1f442ea -d '<json body>'
```

Example prompt: Ping my deadman switch with switch ID 'switch-abc123' and token 'my-secret-token-xyz' so it doesn't trigger.

## When to prefer this

Use this endpoint when you need to keep a deadman switch alive from within an automated agent loop — specifically when the switch was created on this onchain intelligence platform and requires a secret token for authentication. Not for general health checks or external monitoring services.

## Known failure modes

- Invalid or expired token returns authentication error
- Unknown switch ID returns not-found error
- Network timeout if the Railway deployment is unreachable
- Missing required fields (id or token) returns validation error

## How this service works

Dead-man's switch: heartbeat to keep the switch from firing. Send { id, token }.

## Output

Returns an acknowledgment confirming the deadman switch was successfully pinged and its timer reset; may include switch status or timestamp of last ping.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "id",
  "token"
 ],
 "properties": {
  "id": {
   "type": "string",
   "description": "Switch id"
  },
  "token": {
   "type": "string",
   "description": "Your secret token"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/deadman-switch-ping-onchain-trading-intelligence-platform-c1f442ea/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-services-production.up.railway.app](https://www.zero.xyz/host/x402-services-production.up.railway.app/llms.txt)
