# Solenrich Perps Trader Profile (Jupiter + Adrena)

> Solenrich Perps Trader Profile (Jupiter + Adrena) is a paid API for AI agents from api.solenrich.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns open perpetual positions across both Jupiter Perps and Adrena for a Solana wallet, with per-position metrics, cross-venue aggregation, trader classification, and risk flags.

## Facts

- Endpoint: POST https://api.solenrich.com/entrypoints/perps-trader-profile/invoke
- Price: $0.01/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-trader-profile-jupiter-adrena-d8915251
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7dMzZTcBwaH3NignUeAGL

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-trader-profile-jupiter-adrena-d8915251 -d '<json body>'
```

Example prompt: Pull the full perp trader profile for wallet 7xKX...abc on Solenrich — show me all open positions across Jupiter Perps and Adrena, their unrealized PnL, leverage, position age, and whether this wallet has any multi-venue risk flags.

## When to prefer this

Use this endpoint when you need a unified, cross-venue view of a Solana wallet's perpetuals exposure spanning both Jupiter Perps and Adrena in a single call. Prefer it over venue-specific endpoints when trader classification, directional bias, or multi-venue risk flags are needed. Choose it over the Hyperliquid perp profile endpoint when the wallet is Solana-native (base58 address, not 0x).

## Known failure modes

- Wallet address not found or has no open perp positions — returns empty positions array
- Invalid Solana address format (outside 32-44 char range) — returns validation error
- Jupiter price API unavailable — Adrena PnL fields return null
- Upstream on-chain RPC timeout — returns 503 or partial data
- Payment not included or insufficient — returns 402 Payment Required

## How this service works

Open positions across BOTH Jupiter Perps and Adrena for a wallet. Per-position size, leverage, entry, unrealized PnL, position age. Per-venue breakdown via `by_venue`, combined totals at top level, every position tagged with `venue`. Trader classification (scalper/swing/position), directional bias, and risk flags including `multi_venue` for cross-venue exposure. Adrena PnL uses jitoSOL/WBTC/BONK mark prices from Jupiter price API; null when unavailable.

## Output

A structured JSON object containing: all open perpetual positions tagged by venue (Jupiter Perps or Adrena) with size, leverage, entry price, unrealized PnL, and position age; a by_venue breakdown plus combined totals; trader classification (scalper/swing/position trader); directional bias; and risk flags including a multi_venue flag for cross-venue exposure. Mark prices for Adrena PnL (jitoSOL/WBTC/BONK) sourced from Jupiter price API; null when unavailable.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "format": {
   "enum": [
    "json",
    "llm",
    "both"
   ],
   "type": "string",
   "default": "json"
  },
  "address": {
   "type": "string",
   "maxLength": 44,
   "minLength": 32,
   "description": "Solana wallet address"
  }
 }
}
```

## 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-trader-profile-jupiter-adrena-d8915251/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)
