# Stable Financial Real-Time Single-Ticker Price Snapshot

> Stable Financial Real-Time Single-Ticker Price Snapshot is a paid API for AI agents from stable-financial.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns a real-time price quote for a single stock or asset ticker, including price, day change, and day change percent.

## Facts

- Endpoint: GET https://stable-financial.vercel.app/api/prices/snapshot
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stable-financial-vercel-app-8fff9cbe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OhtjHG4dVgX45lqGFsvwp

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 stable-financial-vercel-app-8fff9cbe
```

Example prompt: What's the current price of TSLA, including how much it's moved today and the percent change?

## When to prefer this

Use this endpoint when you need a real-time price snapshot for a single ticker including intraday change metrics. It is ideal for quick point-in-time quotes rather than historical data, batch quotes, or technical indicators. Choose this over generic financial APIs when you need x402 micropayment-compatible access with per-call pricing.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error
- Missing ticker query parameter returns a validation error
- Market closed or outside trading hours may return stale or unavailable data
- Payment not authorized or USDC balance insufficient returns 402 Payment Required

## How this service works

Real-time single-ticker price quote.

## Output

A snapshot object containing the ticker's current price, absolute day change, day change percent, and a timestamp for when the quote was captured.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "ticker": "AAPL"
  }
 }
}
```

## 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",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "minLength": 1
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "snapshot"
     ],
     "properties": {
      "snapshot": {
       "type": "object",
       "description": "Single ticker quote with price, day_change, day_change_percent, time.",
       "propertyNames": {
        "type": "string"
       },
       "additionalProperties": {}
      }
     },
     "additionalProperties": false
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stable-financial-vercel-app-8fff9cbe/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stable-financial.vercel.app](https://www.zero.xyz/host/stable-financial.vercel.app/llms.txt)
