# Ozmium gTrade Crowd Positioning Feed

> Ozmium gTrade Crowd Positioning Feed is a paid API for AI agents from ozmium.org, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns live crowd positioning data for gTrade perpetuals — per-pair long/short split in percent and USD, book share of total venue OI, and venue-wide totals.

## Facts

- Endpoint: GET https://ozmium.org/v1/crowd
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ozmium-gtrade-crowd-positioning-feed-9b81178c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zIV0qcPo3pkhAKescyllL

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 ozmium-gtrade-crowd-positioning-feed-9b81178c
```

Example prompt: Pull the current gTrade crowd positioning snapshot — I want to see which pairs the crowd is most heavily skewed on and what share of total venue OI each pair holds right now.

## When to prefer this

Choose this endpoint when you need real-time decentralized perpetuals crowd positioning data from gTrade specifically, including the bookSharePct conviction metric that weights sentiment by capital concentration. Prefer it over generic sentiment feeds when you want on-chain sourced, pair-level long/short splits with venue-wide context.

## Known failure modes

- Network or upstream gTrade data unavailability returns a non-ok response
- Payment failure or missing x402 payment header results in 402 Payment Required
- Malformed request returns 400 Bad Request
- If gTrade has no open interest at query time, pair list may be empty

## How this service works

Live gTrade crowd positioning — where the money on the venue actually sits, right now. Per pair: long vs short split (%, USD both sides, total book) plus bookSharePct, each pair's share of the WHOLE Gains open book (the conviction coefficient: 90% long on a pair holding 4% of the venue's money is a strong pack; the same split on an ignored pair is noise). Venue totals included (long/short/book USD, overall long %, pairs with OI). Full details: GET /v1.

## Output

A JSON object containing per-pair data (long %, short %, long USD, short USD, total pair book USD, bookSharePct representing the pair's fraction of total venue open interest) and venue-level aggregates (total long USD, total short USD, total book USD, overall long %, count of pairs with OI).

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "data": {
       "type": "object",
       "properties": {
        "ok": {
         "type": "boolean"
        }
       }
      },
      "network": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ozmium-gtrade-crowd-positioning-feed-9b81178c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ozmium.org](https://www.zero.xyz/host/ozmium.org/llms.txt)
