# Strale Stock Quote API

> Strale Stock Quote API is a paid API for AI agents from api.strale.io, paid per call via x402, $0.054001/call, status unknown (last checked 2026-09-14, last successful call 2026-05-01).

Returns real-time stock quote data (price, change, volume, market state) for any publicly traded company given a ticker symbol.

## Facts

- Endpoint: GET https://api.strale.io/x402/stock-quote
- Price: $0.054001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Last successful call: 2026-05-01
- Success rate: 100% of calls made through Zero
- Activations on Zero: 49
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-59b78718
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Elxk5_fuXcbTTJr0dQpkj

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 api-strale-io-59b78718
```

Example prompt: What is the current stock price, daily change, and volume for AAPL right now?

## When to prefer this

Use this endpoint when you need real-time or near-real-time stock quote data for a publicly traded company identified by its ticker symbol, including support for international exchanges (e.g. VOLV-B.ST). Prefer this over general financial APIs when you need quick per-call pricing with x402 micropayment access and no subscription required.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty result
- Delisted or OTC securities may not be found
- Market data feed outage may cause stale or missing quotes
- Missing required 'symbol' query parameter returns a 400 error
- Non-public or private company tickers return no data

## How this service works

Get real-time stock quote data for any publicly traded company. Accepts ticker symbols (e.g. AAPL, VOLV-B.ST). Returns price, change, volume, market state.

## Output

Returns real-time stock quote data including current price, price change, trading volume, and market state (open/closed/pre-market/after-hours) for the requested ticker symbol.

## Example request

```json
{
 "symbol": "AAPL"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "symbol"
 ],
 "properties": {
  "symbol": {
   "type": "string",
   "description": "Stock ticker symbol (e.g. AAPL, TSLA, VOLV-B.ST)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "name": {
  "type": "string"
 },
 "price": {
  "type": "number"
 },
 "change": {
  "type": "number"
 },
 "symbol": {
  "type": "string"
 },
 "volume": {
  "type": "integer"
 },
 "change_percent": {
  "type": "number"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-59b78718/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
