# Oromi Crypto Market Context

> Oromi Crypto Market Context is a paid API for AI agents from agents.oromi.co.uk, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns current price, volatility regime, and trend context for a given cryptocurrency asset symbol

## Facts

- Endpoint: GET https://agents.oromi.co.uk/api/crypto/context
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oromi-crypto-market-context-68e7ca38
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8iNQmTLQBEcusGyzb-HPI

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 oromi-crypto-market-context-68e7ca38
```

Example prompt: What's the current price, volatility regime, and trend context for Bitcoin right now?

## When to prefer this

Choose this endpoint when an AI agent needs lightweight, structured crypto market context — price, volatility regime, and trend — for a single asset in real time, especially within a payment-per-call x402 workflow. Prefer it over raw exchange APIs or heavy analytics platforms when you need a simple, pre-interpreted market signal rather than raw OHLCV data or order book depth.

## Known failure modes

- Missing or invalid symbol parameter returns an error — symbol must match a supported asset ticker or CoinGecko ID
- Unknown asset symbol not found in CoinGecko data returns a not-found or empty response
- Payment failure via x402 protocol if USDC balance is insufficient or wallet is not configured
- Rate limiting or upstream CoinGecko API unavailability causing delayed or failed responses

## How this service works

Machine-payable APIs for AI agents, paid per call in USDC via the x402 protocol: UK business data (Companies House), UK property market data (HM Land Registry), website agent-readiness audits, and crypto market context.

## Output

A JSON object containing the asset symbol, current price in USD, a volatility object with a regime classification (e.g. 'normal', 'high'), and a trend_context string (e.g. 'neutral_context', 'bullish_context') describing the current market trend direction.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Asset symbol (btc, eth, sol...) or CoinGecko id"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "symbol": "BTC",
  "price_usd": 100000,
  "volatility": {
   "regime": "normal"
  },
  "trend_context": "neutral_context"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oromi-crypto-market-context-68e7ca38/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.oromi.co.uk](https://www.zero.xyz/host/agents.oromi.co.uk/llms.txt)
