# Oromi Crypto Market Context

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

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

## Facts

- Endpoint: GET https://oromi-agent-services.onrender.com/api/crypto/context
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oromi-crypto-market-context-b6f8424a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YadrFXfsGd5G_QXZhJ6-E

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-b6f8424a
```

Example prompt: What's the current price and market context for BTC — is volatility normal or elevated, and what's the trend right now?

## When to prefer this

Use this endpoint when an AI agent needs a fast, lightweight, machine-payable crypto market snapshot — price, volatility regime, and trend context — without needing full OHLCV data or historical series. It is ideal when the agent is already operating in an x402 micropayment context (e.g. Coinbase-adjacent infrastructure) and needs to gate a decision on current crypto market conditions. Prefer it over heavier financial data APIs when only regime and trend signals are required.

## Known failure modes

- Unknown or unsupported symbol returns an error or empty result
- Network or upstream data provider outage causes no price data to be returned
- Payment via x402 protocol fails if USDC balance is insufficient or wallet is not configured
- Rate limiting or throttling if called excessively in a short window
- CoinGecko ID not recognized if an obscure or misspelled asset identifier is used

## 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 regime label (e.g. 'normal', 'elevated'), and a trend context string (e.g. 'neutral_context', 'bullish_context') describing the current market environment for the requested asset.

## 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-b6f8424a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oromi-agent-services.onrender.com](https://www.zero.xyz/host/oromi-agent-services.onrender.com/llms.txt)
