# Vedetta Track Record

> Vedetta Track Record is a paid API for AI agents from vedetta.dethboy.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns verifiable logged statistics for an analyst's past signals and posts, optionally filtered by asset ticker.

## Facts

- Endpoint: GET https://vedetta.dethboy.com/v1/track-record
- 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/vedetta-track-record-aa39fcf9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ps-pDijH3uNpmmfG4Xm63

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-track-record-aa39fcf9
```

Example prompt: Pull up the verified track record stats for BTC signals from Vedetta — I want to see the auditable logged performance history.

## When to prefer this

Use this endpoint when you need verifiable, auditable proof of an analyst's historical signal performance rather than live or current signals. Prefer this over live signal endpoints when the goal is due diligence, backtesting context, or validating analyst credibility for a specific asset.

## Known failure modes

- Invalid or unsupported asset ticker returns an error or empty result
- Service unavailable returns a non-200 HTTP status
- Payment not accepted or x402 payment flow fails, blocking access
- Unrecognized query parameter values may be silently ignored or cause an error

## How this service works

Verifiable call log: every signal this desk has published, timestamped and countable (?asset=BTC optional). Audit us for a penny before you spend a dime — no accuracy claims, compute your own. Descriptive research, not financial advice.

## Output

Returns verifiable logged statistics and performance metrics for the analyst's posted signals, optionally scoped to a specific asset like BTC, ETH, or SOL. Includes historical signal/post counts and outcome data that can be audited for accuracy.

## 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",
     "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": {
      "note": {
       "type": "string"
      },
      "asset": {
       "type": "string"
      },
      "fully_parsed": {
       "type": "integer"
      },
      "signals_logged": {
       "type": "integer"
      },
      "divergence_flags": {
       "type": "integer"
      },
      "paid_calls_served": {
       "type": "integer"
      },
      "group_posts_ingested": {
       "type": "integer"
      },
      "tracking_since_epoch": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "note": "Accuracy scoring activates once signals accumulate 24h/7d price outcomes.",
  "asset": "BTC",
  "fully_parsed": 214,
  "signals_logged": 220,
  "divergence_flags": 9,
  "paid_calls_served": 12,
  "group_posts_ingested": 340,
  "tracking_since_epoch": 1752940000
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vedetta-track-record-aa39fcf9/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)
