# Solenrich Perps Market Trend

> Solenrich Perps Market Trend is a paid API for AI agents from api.solenrich.com, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-14).

Returns per-symbol delta metrics (mark price, open interest, long/short skew, utilization, borrow APR) over 7/14/30-day windows with directional indicators for perpetuals market regime detection.

## Facts

- Endpoint: POST https://api.solenrich.com/entrypoints/perps-market-trend/invoke
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solenrich-perps-market-trend-87cb03ae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ExrkHR2MtKvpJXG7knL14

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 solenrich-perps-market-trend-87cb03ae -d '<json body>'
```

Example prompt: Are perp markets currently growing, stressed, or rebalancing? Pull the 30-day trend deltas for mark price, open interest, long/short skew, utilization, and borrow APR across venues and give me the directional signals in JSON format.

## When to prefer this

Use this endpoint when building regime-detection strategies or bots that need to adapt behavior based on whether perp markets are expanding, stressed, or rebalancing — specifically when you need multi-metric directional signals (OI, skew, utilization, borrow APR) across Solana-based perp venues over configurable lookback windows rather than raw spot or funding data alone.

## Known failure modes

- Invalid lookback value returns validation error
- Invalid format enum returns validation error
- Upstream on-chain data unavailable causes partial or empty response
- Rate limiting or payment failure (x402) blocks the call
- Stale data if on-chain indexer lags behind real-time

## How this service works

Per-symbol deltas for mark price, total OI, long/short skew, utilization, and borrow APR over 7/14/30 days. Direction indicators per metric and per market. Overall direction excludes mark price (price moves are not health signals). Required for regime-detection strategies and any bot that adjusts behavior based on whether markets are growing, stressed, or rebalancing. Mirror of token-trend for perps.

## Output

A structured JSON (or LLM-friendly text) payload containing per-symbol deltas for mark price, total open interest, long/short skew, utilization, and borrow APR over the selected lookback window; plus directional indicators (up/down/flat) per metric per market; and an overall market direction signal (excluding price) indicating whether markets are growing, stressed, or rebalancing.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "format": {
   "enum": [
    "json",
    "llm",
    "both"
   ],
   "type": "string",
   "default": "json"
  },
  "lookback": {
   "enum": [
    "7d",
    "14d",
    "30d"
   ],
   "type": "string",
   "default": "7d",
   "description": "History window to compare current state against"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "output": {
   "briefing": "string (llm format) or object (json format)"
  },
  "run_id": "uuid",
  "status": "succeeded"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solenrich-perps-market-trend-87cb03ae/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.solenrich.com](https://www.zero.xyz/host/api.solenrich.com/llms.txt)
