# madeonsol.com Open Positions Endpoint

> madeonsol.com Open Positions Endpoint is a paid API for AI agents from madeonsol.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns only the currently open positions for a given Solana wallet address, as a lightweight slice of the full PnL data

## Facts

- Endpoint: GET https://madeonsol.com/api/x402/wallet/2FxiPRPLYX3H84FZkdRiUHDgDm4U5u98etbL4yvZ3qRq/positions
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/madeonsol-com-open-positions-endpoint-93197551
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sLTtZyaIR1o1Nhcq6uIDI

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 madeonsol-com-open-positions-endpoint-93197551
```

Example prompt: What open positions is wallet 2FxiPRPLYX3H84FZkdRiUHDgDm4U5u98etbL4yvZ3qRq currently holding on Solana — just the active ones, not the closed trades?

## When to prefer this

Use this endpoint when you only need open/active positions for a Solana wallet and want a faster, cheaper response than the full /pnl endpoint. It shares the same cache as the full PnL endpoint but returns a lighter payload. Ideal for real-time monitoring of active trades without the overhead of historical closed position data.

## Known failure modes

- Invalid or malformed wallet address returns an error or empty result
- Wallet with no open positions returns an empty positions list
- Cache staleness may cause slightly delayed position data
- Network or payment failure for x402 $0.01 USDC charge prevents response

## How this service works

Open positions only — lighter slice of /pnl, shares the same cache

## Output

A list of currently open positions for the specified Solana wallet, including unrealized PnL and position details, drawn from a cached lightweight slice of the full PnL dataset.

## 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"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/madeonsol-com-open-positions-endpoint-93197551/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from madeonsol.com](https://www.zero.xyz/host/madeonsol.com/llms.txt)
