# x402-seller Stock Price Feed

> x402-seller Stock Price Feed is a paid API for AI agents from x402-seller-m8nx.onrender.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Fetches real-time or near-real-time stock price data for a given ticker symbol, payable per-request in USDC via x402.

## Facts

- Endpoint: GET https://x402-seller-m8nx.onrender.com/stock
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-seller-stock-price-feed-4ecf3e86
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wtINOcGR7wBU64yt4-KO_

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 x402-seller-stock-price-feed-4ecf3e86
```

Example prompt: What's the current stock price for NVDA? Pay per-request in USDC — no API key needed.

## When to prefer this

Choose this endpoint when your AI agent needs stock price data without going through a traditional API key registration process, or when operating in a pay-per-use micro-payment architecture using x402/USDC. It is ideal for autonomous agents that need keyless, low-friction access to equity prices on an occasional or unpredictable basis, where a subscription-based data provider would be overkill.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty result
- Payment failure or insufficient USDC balance prevents the call from completing
- Market hours or data availability may affect freshness of price data
- Network timeout if the Render-hosted service is cold-starting
- Missing ticker parameter results in a bad request response

## How this service works

Rug protection and decision-ready intelligence for autonomous trading agents. Keyless by design: no signup, no API key — pay a cent per request in USDC (x402). The /alpha/launches LAUNCH RADAR discovers what just launched AND rug-screens every candidate in one call, ranked per-token verdicts — the proactive 'give me safe alpha' call. /vet gives a single-token go/no-go in ONE call by fusing a COMPOSITE rug score (GoPlus static analysis + a LIVE Honeypot.is buy/sell simulation + serial-rugger check) with our SELF-COLLECTED liquidity-drain trend — a rug-in-progress signal that exists nowhere for free because it requires collecting reserves over time. One call is cheaper than the inference tokens you'd burn stitching 4 free APIs, and it stops your agent losing its whole position to a honeypot. Also: /onchain/liquidity drain detector, /screen batch watchlist check, /brief market regime, and raw feeds (prices, stocks, DEX pools, launches, perp funding/OI).

## Output

Returns a JSON object containing current stock price and potentially related market data for the requested ticker symbol. Exact fields may include price, timestamp, and ticker metadata depending on the service implementation.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "ticker": {
       "type": "string",
       "default": "AAPL"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "price": 333.74,
  "source": "yahoo",
  "symbol": "AAPL",
  "currency": "USD",
  "change_pct": 0.14
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-seller-stock-price-feed-4ecf3e86/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-seller-m8nx.onrender.com](https://www.zero.xyz/host/x402-seller-m8nx.onrender.com/llms.txt)
