# Vedetta Live Event Probe

> Vedetta Live Event Probe is a paid API for AI agents from vedetta.dethboy.com, paid per call via x402, $0.09/call, status unknown (last checked 2026-09-14).

Checks a crypto asset for live significant events (price gap, news shock, social spike) right now and returns a 1-10 significance score or a clean no-event answer

## Facts

- Endpoint: GET https://vedetta.dethboy.com/v1/event
- Price: $0.09/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vedetta-live-event-probe-ca99225a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pXtcnCjLXKYpDm-yPGP7l

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 vedetta-live-event-probe-ca99225a
```

Example prompt: Is anything significant happening with BTC right now — any price gap, news shock, or social spike — and how significant is it on a scale of 1 to 10?

## When to prefer this

Choose this endpoint when you need a fast, cheap, real-time gate check before acting on a crypto asset — specifically when your agent polling loop only wants to trigger on meaningful market events. Ideal for event-driven automation where you want to skip no-event states and only proceed when something significant (score > threshold) is detected. Prefer this over historical signal endpoints when you need the current live state, and over news or sentiment endpoints when you want a single unified significance score across all trigger types.

## Known failure modes

- Unknown or unsupported asset ticker returns an error or empty result
- Network timeout if the live probe takes too long
- Payment failure (x402) if USDC balance is insufficient — request blocked before data is returned
- Rate limiting if the endpoint is polled too aggressively in a tight loop
- Ambiguous ticker symbols (e.g. AI) may resolve to unexpected assets

## How this service works

Anything happening on this asset right now? Live probe for significant triggers — price gap, news shock, social spike — with a 1-10 significance score, or a clean no-event answer (?asset=BTC). Built for agent polling loops that only want to act when something moves. Descriptive research, not financial advice.

## Output

Returns either a structured event object with event type (price gap, news shock, social spike), a significance score from 1 to 10, and a short description of what is happening — or a clean no-event answer indicating nothing notable is occurring on the queried asset at this moment.

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "asset"
     ],
     "properties": {
      "asset": {
       "type": "string",
       "description": "Ticker symbol, e.g. BTC, ETH, SOL, AI"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "asset": {
       "type": "string"
      },
      "event": {
       "type": "boolean"
      },
      "quality": {
       "type": "string"
      },
      "summary": {
       "type": "string"
      },
      "disclaimer": {
       "type": "string"
      },
      "trigger_type": {
       "type": "string"
      },
      "significance_score": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "asset": "BTC",
  "event": true,
  "quality": "structured",
  "summary": "Social interactions spiked 3x baseline in 4h.",
  "disclaimer": "Descriptive market intelligence, not financial advice.",
  "trigger_type": "social_spike",
  "significance_score": 7
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vedetta-live-event-probe-ca99225a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vedetta.dethboy.com](https://www.zero.xyz/host/vedetta.dethboy.com/llms.txt)
