# minia2a Market Terminal

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

Fetches real-time market prices and analysis data for financial instruments via the x402 payment protocol.

## Facts

- Endpoint: GET https://minia2a.uk/x402/market-terminal
- Price: $0.75/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/minia2a-market-terminal-1d1336f1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dG1P9rh4-ybmbBrBiH5JB

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-market-terminal-1d1336f1
```

Example prompt: Pull up the market terminal data for ETH right now — I want the real-time price and any available analysis.

## When to prefer this

Choose this endpoint when you need real-time market prices or analysis and are operating in an x402-payment-enabled agent context. It is particularly useful for crypto/DeFi workflows where pay-per-call pricing is acceptable and fresh price data is critical. Prefer alternatives if you need a free tier, bulk historical data, or a well-documented public market data API with schemas.

## Known failure modes

- Payment not received or insufficient USDC — 402 Payment Required response
- Invalid or unsupported asset type — may return empty or error response
- Malformed query parameters — 400 Bad Request
- Market data source unavailable — may return stale or null data
- Rate limiting if too many requests in a short window

## How this service works

Market terminal — real-time prices and analysis.

## Output

Returns real-time market price data and analysis for the queried financial instrument, including current price metrics and relevant market analytics.

## 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-market-terminal-1d1336f1/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)
