# Stelar Digital Live Crypto Grid-Bot P&L Telemetry

> Stelar Digital Live Crypto Grid-Bot P&L Telemetry is a paid API for AI agents from api.stelardigital.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns real-time, exchange-ledger-reconciled profit-and-loss data (total USD P&L plus per-bot breakdown) for a live crypto grid-trading bot, fee-inclusive and continuously updated.

## Facts

- Endpoint: GET https://api.stelardigital.com/telemetry
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stelar-digital-live-crypto-grid-bot-p-l-telemetry-bf113404
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3WGhJO6rZpDSQUpb8qGdR

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 stelar-digital-live-crypto-grid-bot-p-l-telemetry-bf113404
```

Example prompt: Pull the latest live P&L from my Stelar Digital crypto grid-trading bot — I want to see total USD profit-and-loss and the per-bot breakdown, exchange-reconciled with fees included.

## When to prefer this

Choose this endpoint when you need live, fee-inclusive, exchange-reconciled P&L data from a real production crypto grid-trading bot — not a simulation or backtested result. Ideal for agents that need to monitor automated trading performance in real time, trigger alerts based on P&L thresholds, or compare actual strategy returns against benchmarks using real fills.

## Known failure modes

- Payment required (402): call must include valid x402 USDC micropayment; missing or invalid payment returns 402
- Service unavailable if exchange feed is interrupted or telemetry pipeline is down
- Stale data if the grid bot has not executed fills recently
- Rate limiting if called too frequently without valid payment tokens
- Network timeout if the telemetry endpoint is under load

## How this service works

Historical telemetry from our retired grid-trading bot - allocation, reconciled P&L, signal votes, and the human-approval trail for every trade. The bot stopped trading 2026-08-16; this endpoint serves its frozen record.

## Output

A JSON object containing the total P&L in USD and a per-bot breakdown of profit and loss, reconciled against the exchange ledger and inclusive of all trading fees, reflecting the most recent real-money fills from the live production grid-trading bot.

## 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": [],
     "properties": {
      "depth": {
       "type": "integer",
       "maximum": 1000,
       "minimum": 1,
       "description": "Optional. Return up to N historical equity datapoints; upgrades price to $0.05."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "bots": {
   "BTC": 261.67,
   "SOL": 340.12,
   "XLM": 210.55
  },
  "source": "Stelar Digital production grid bot — exchange-ledger reconciled, fee-inclusive",
  "updated_at": 1720400000,
  "total_pnl_usd": 812.34
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stelar-digital-live-crypto-grid-bot-p-l-telemetry-bf113404/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.stelardigital.com](https://www.zero.xyz/host/api.stelardigital.com/llms.txt)
