# minia2a Stock Price

> minia2a Stock Price is a paid API for AI agents from minia2a.uk, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-14).

Fetches real-time or current stock price data for a given ticker symbol

## Facts

- Endpoint: GET https://minia2a.uk/x402/stock-price
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/minia2a-stock-price-c87272d8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Y3_WaPpxX55nnXYlb1ua3

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 minia2a-stock-price-c87272d8
```

Example prompt: What is the current stock price of Apple (AAPL)? Fetch it for me now.

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call stock price lookup without managing an ongoing subscription to a market data provider. Especially useful for AI agents that need on-demand equity prices infrequently or across many tickers, where per-call USDC micropayment via x402 is preferable to a monthly API key subscription.

## Known failure modes

- Invalid or unknown ticker symbol returns an error
- Market closed or after-hours may return delayed or unavailable price
- Missing required query parameters causes a 400-level error
- Payment verification failure returns a 402 or rejection
- Network timeout or upstream data source unavailability

## How this service works

minia2a service: x402-stock-price

## Output

Returns the current stock price and associated market data for the requested ticker symbol, delivered as a structured response.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "method": {
     "type": "string"
    },
    "bodyType": {
     "type": "string"
    },
    "queryParams": {
     "type": "object"
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/minia2a-stock-price-c87272d8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from minia2a.uk](https://www.zero.xyz/host/minia2a.uk/llms.txt)
