# Supership Stock & Crypto Brief (supership.crestsystems.ai)

> Supership Stock & Crypto Brief (supership.crestsystems.ai) is a paid API for AI agents from supership.crestsystems.ai, paid per call via x402, $0.08/call, status down (last checked 2026-09-15).

Returns a cryptographically signed Ed25519 receipt bundling live price and SEC filings (for equities) or live market data (for crypto) for a given US stock ticker or major crypto symbol.

## Facts

- Endpoint: GET https://supership.crestsystems.ai/v2/stocks/brief
- Price: $0.08/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/supership-stock-crypto-brief-supership-crestsystems-ai-acb2d923
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7QeqSYsYhGoOIpFbKXB7X

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 supership-stock-crypto-brief-supership-crestsystems-ai-acb2d923
```

Example prompt: Can you pull a signed data brief for NVDA — I need the latest SEC filings and live price, with a verifiable Ed25519 receipt I can cite as provenance?

## When to prefer this

Choose this endpoint when you need a single, cryptographically verifiable data bundle that combines live financial data (price) with regulatory filings (SEC) for US equities, or live market metrics for major crypto — especially when provenance and citability of the data source matters. Prefer this over raw price oracles or separate filing APIs when you need a tamper-evident receipt you can cite or audit.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error
- Crypto symbol not in supported list (BTC, ETH, SOL, DOGE, etc.) returns an error
- Payment not provided or insufficient (x402 payment required at $0.08 USDC per call)
- Upstream SEC EDGAR or price feed temporarily unavailable causes partial or failed response
- Rate limiting or quota exceeded returns an error response

## How this service works

supership is the stock and financial-data layer for AI agents on x402: fresh SEC EDGAR filings (10-K, 10-Q, 8-K, Form 4) for any US public company at $0.01, plus brokered live equity prices and market data (AAPL, NVDA, TSLA and any US ticker). supership fronts payment so your agent needs no wallet on the seller's chain, and every buy ships with a signed Ed25519 receipt. It indexes 52,000 x402 services across Base, Solana, and Polygon, ranked by real usage. supership brokers and witnesses market data; it is not a price oracle.

## Output

A signed supership.bundle.v1 Ed25519 receipt containing: for US equities — latest SEC filings (10-K, 10-Q, 8-K, Form 4) plus a live stock price; for major crypto — live price, market cap, 24h volume, and 24h change — along with a source-trust verdict. The public key for verification is available at /api/pubkey.

## Example request

```json
{
 "ticker": "AAPL"
}
```

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ticker": "AAPL",
  "verify": "GET /api/pubkey",
  "receipt": {
   "kind": "supership.bundle.v1",
   "signature": "<base64 ed25519>",
   "verify_with": "GET /api/pubkey"
  },
  "live_price": {
   "data": 207.7,
   "price_source": "stooq"
  },
  "sec_filings": {
   "company": "Apple Inc.",
   "recent_filings": [
    {
     "form": "10-Q",
     "filed": "2026-05-01"
    }
   ]
  },
  "source_trust": {
   "grade": "A",
   "score": 80
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/supership-stock-crypto-brief-supership-crestsystems-ai-acb2d923/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from supership.crestsystems.ai](https://www.zero.xyz/host/supership.crestsystems.ai/llms.txt)
