# SolEnrich Jupiter Perps Market Structure

> SolEnrich Jupiter Perps Market Structure is a paid API for AI agents from api.solenrich.com, paid per call via x402, $0.012/call, status unknown (last checked 2026-09-13).

Returns per-market open interest, utilization, borrow APR, skew, OI caps, and health flags for Jupiter Perps SOL/BTC/ETH markets by reading on-chain Anchor accounts directly.

## Facts

- Endpoint: POST https://api.solenrich.com/entrypoints/perps-market-structure/invoke
- Price: $0.012/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solenrich-jupiter-perps-market-structure-9114b83f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pNLqvS5zCH5dntdAVQoRm

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-jupiter-perps-market-structure-9114b83f -d '<json body>'
```

Example prompt: What's the current open interest, utilization, borrow APR, skew, and health status across the SOL, BTC, and ETH markets on Jupiter Perps right now? Give me the full structured breakdown.

## When to prefer this

Use this endpoint when you need real-time, on-chain Jupiter Perps market structure data specifically for SOL, BTC, or ETH — including OI caps, utilization, borrow APR, and health flags. Prefer this over aggregated Solana venue endpoints when you need Jupiter-specific granularity. Use the sibling trend endpoint if you need historical delta/change data over 7/14/30-day windows instead of current snapshot.

## Known failure modes

- On-chain RPC unavailable or degraded — returns error indicating upstream read failure
- Invalid format enum value — returns 400 validation error
- Jupiter Perps contract data temporarily unavailable — partial or empty market data returned
- Network congestion on Solana — stale or delayed on-chain reads

## How this service works

Per-market open interest, utilization, borrow APR, skew, OI caps, and health flags across Jupiter Perps SOL/BTC/ETH markets. Reads on-chain Anchor accounts directly.

## Output

A structured JSON (or LLM-friendly text, or both) payload containing per-market data for SOL, BTC, and ETH on Jupiter Perps: open interest figures, utilization percentage, borrow APR, long/short skew ratio, OI cap limits, and health flags indicating any market stress or cap warnings — all sourced live from on-chain Anchor accounts.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "format": {
   "enum": [
    "json",
    "llm",
    "both"
   ],
   "type": "string",
   "default": "json"
  }
 }
}
```

## 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-jupiter-perps-market-structure-9114b83f/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)
