# ioswarm.io Live Market Quote

> ioswarm.io Live Market Quote is a paid API for AI agents from ioswarm.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-19).

Returns real-time price quotes, session change, and currency for up to 8 stock, ETF, crypto, or FX symbols in a single call.

## Facts

- Endpoint: POST https://ioswarm.io/api/v1/x402/quote
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-19
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ioswarm-io-live-market-quote-9237fa17
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UxVggvSWayybx_5oC4WMd

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 ioswarm-io-live-market-quote-9237fa17 -d '<json body>'
```

Example prompt: Can you get me live quotes for AAPL, TSLA, BTC-USD, and ETH-USD — I want to see the current price, today's session change, and what currency each is in?

## When to prefer this

Choose this endpoint when you need real-time price quotes for a mixed basket of asset classes — stocks, ETFs, crypto, and FX — all in a single low-cost call with no account registration required. Ideal for agents that need ad-hoc market data on demand without managing API keys or subscriptions.

## Known failure modes

- Invalid or unrecognized ticker symbols return an error or empty data for that symbol
- Exceeding 8 symbols in a single request will be rejected
- Payment failure (insufficient USDC balance or x402 auth issue) blocks the response
- Crypto pairs must be formatted as X-USD (e.g. BTC-USD) or may not resolve
- Market closure may result in stale or missing session-change data

## How this service works

Live quotes for up to 8 symbols — stocks, ETFs, crypto pairs (BTC-USD), FX — price, session change and currency, in the paid response. $0.01 per call, no account.

## Output

A paid response containing current market price, session change (absolute or percentage), and currency denomination for each requested symbol, covering up to 8 tickers per call.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "symbols"
     ],
     "properties": {
      "symbols": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "maxItems": 8,
       "description": "Ticker symbols; crypto as X-USD."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ioswarm-io-live-market-quote-9237fa17/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ioswarm.io](https://www.zero.xyz/host/ioswarm.io/llms.txt)
