# AI Hedge Fund Research Exchange — Replay Endpoint

> AI Hedge Fund Research Exchange — Replay Endpoint is a paid API for AI agents from research.johnnybucks.tech, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Retrieves a step-by-step replay of a previously executed AI hedge fund research run, returning the run ID and number of steps in the replay sequence.

## Facts

- Endpoint: GET https://research.johnnybucks.tech/api/x402/replay
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ai-hedge-fund-research-exchange-replay-endpoint-2c027297
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uwc1p9cnzb5EqLNawMVLx

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 ai-hedge-fund-research-exchange-replay-endpoint-2c027297
```

Example prompt: Can you pull up the replay for research run cmr-abc123 and show me how many steps it took?

## When to prefer this

Use this endpoint when you need to inspect or audit a previously completed AI hedge fund research run by stepping through its execution trace. Prefer this over general research endpoints when you already have a run ID and want to review what happened, count steps, or debug a prior workflow — not to initiate new research or execute trades.

## Known failure modes

- Invalid or missing run ID returns an error or empty result
- Malformed properties parameter may cause a 400 bad request
- Run ID not found returns empty or 404 response
- Payment not included or invalid x402 payment header returns 402 Payment Required
- Rate limiting or quota exceeded returns 429

## How this service works

Read-only x402 research APIs. No trading, broker, or execution is exposed.

## Output

Returns a JSON object containing the run ID (e.g. 'cmr...') and a replay object with a steps field indicating the number of steps in the replayed research run sequence.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "example": {
  "runId": "cmr...",
  "replay": {
   "steps": 7
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ai-hedge-fund-research-exchange-replay-endpoint-2c027297/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from research.johnnybucks.tech](https://www.zero.xyz/host/research.johnnybucks.tech/llms.txt)
