# CryptoPulse Equity Perpetuals Positioning & Sentiment

> CryptoPulse Equity Perpetuals Positioning & Sentiment is a paid API for AI agents from cryptopulse.theaslangroupllc.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Returns real-time funding rates, crowding sentiment, open interest, and positioning metrics for equity and commodity perpetual markets (e.g. TSLA, NVDA, gold) on Hyperliquid HIP-3.

## Facts

- Endpoint: GET https://cryptopulse.theaslangroupllc.com/api/equity-positioning
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptopulse-equity-perpetuals-positioning-sentiment-aa16f276
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4qxv_mwQSQNHClDnpuCW9

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 cryptopulse-equity-perpetuals-positioning-sentiment-aa16f276
```

Example prompt: What's the current funding rate and crowding sentiment for TSLA and NVDA perps right now — are longs or shorts paying, and where is the open interest concentrated?

## When to prefer this

Use this endpoint when you need real-time positioning and funding data specifically for equity and commodity perpetual markets (stocks like TSLA/NVDA, gold, etc.) traded on Hyperliquid HIP-3. This is the only known source for equity perp funding rates and open interest data. Prefer this over crypto funding rate endpoints when the asset is a stock or commodity, not a native crypto token.

## Known failure modes

- Requested ticker not available as a HIP-3 equity perp on Hyperliquid — returns empty or 404
- Market temporarily illiquid or halted — OI/funding data may be stale
- Payment not received or x402 authentication failure — returns 402 Payment Required
- Network timeout fetching on-chain data — returns 503 or timeout error

## How this service works

Positioning and sentiment on stock perps — which side of TSLA, NVDA or gold is crowded right now, 24/7. Funding rates and open interest on equities exist nowhere else. Answers "most crowded equity trade", "are TSLA longs paying", "where is open interest concentrated". Per market: annualized funding, crowding label, OI in USD, OI share, volume/OI turnover, premium vs oracle. From Hyperliquid HIP-3 markets. Deterministic, no LLM.

## Output

Returns per-market data for equity/commodity perpetuals including: annualized funding rate, a crowding label (e.g. long-crowded/short-crowded/neutral), open interest in USD, OI market share percentage, volume-to-OI turnover ratio, and the premium versus oracle price. Data is deterministic and sourced directly from Hyperliquid HIP-3 markets.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "sort": {
   "type": "string",
   "description": "leaderboard order: crowding (|funding|, default) | oi | turnover"
  },
  "group": {
   "type": "string",
   "description": "filter: equity | commodity | fx | index | crypto_index | preipo"
  },
  "limit": {
   "type": "number",
   "description": "when symbol omitted: how many markets (default 20, max 100)"
  },
  "symbol": {
   "type": "string",
   "description": "one symbol, e.g. TSLA, NVDA, GOLD, US500 — omit for the crowding leaderboard"
  },
  "min_oi_usd": {
   "type": "number",
   "description": "leaderboard open-interest floor in USD (default 5000000 — thin books print absurd funding; 0 shows all)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "markets": [
   {
    "symbol": "TSLA",
    "crowding": "crowded_long",
    "asset_class": "equity",
    "premium_pct": 0.04,
    "oi_share_pct": 11.2,
    "turnover_24h": 0.85,
    "open_interest_usd": 98000000,
    "funding_annualized_pct": 24.1
   }
  ],
  "summary": {
   "largest_oi": "SP500",
   "most_crowded_long": "TSLA",
   "most_crowded_short": "EWZ"
  },
  "deterministic": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptopulse-equity-perpetuals-positioning-sentiment-aa16f276/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cryptopulse.theaslangroupllc.com](https://www.zero.xyz/host/cryptopulse.theaslangroupllc.com/llms.txt)
