# Vibe Springs Market Data API

> Vibe Springs Market Data API is a paid API for AI agents from vibesprings.net, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Fetches real-time prices, 24h stats, and metadata for stocks, crypto spot, and crypto perpetual futures across multiple exchanges

## Facts

- Endpoint: GET https://vibesprings.net/api/market-data
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vibe-springs-market-data-api-46911d56
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dXOfnoxPhOyjrCEpZ0asr

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 vibe-springs-market-data-api-46911d56
```

Example prompt: What are the current prices and 24h stats for BTC, ETH, AAPL, and SOL-PERP right now?

## When to prefer this

Use this endpoint when you need real-time price data spanning both traditional equities (via Yahoo Finance) and crypto assets (spot via Coinbase, perpetuals via Hyperliquid) in a single unified call, without needing an API key or account — especially useful in agentic workflows where micropayment-based pay-per-query access is preferred over subscription APIs.

## Known failure modes

- Invalid symbol returns no entry for that symbol or an error field
- Unsupported asset type not available on covered exchanges returns missing data
- Network timeout from upstream exchange data sources may delay or fail response
- Malformed symbols parameter (bad format) may return 400 error
- Requesting too many symbols at once may degrade response time or return partial results

## How this service works

Live multi-asset price feed and market intelligence endpoint. Query real-time US Stock prices, cryptocurrency spot rates (USD pairs), and perpetual futures analytics (funding rates, open interest, leverage) in a single unified request. Ideal for AI portfolio managers, execution algorithms, and quantitative models.

## Output

Returns a JSON object with per-symbol entries including asset name, type (stock/crypto_spot/crypto_perp), current price, 24h high/low, 24h percent change, volume, exchange name, and for perpetuals: funding rate, mark price, open interest, and annualized funding rate. Also includes total count and processing time.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "symbols": "BTC,ETH,AAPL,SOL-PERP"
  }
 }
}
```

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "symbols": {
       "type": "string",
       "description": "Comma-separated list of symbols (e.g. 'AAPL,NVDA,BTC,ETH,SOL-PERP,BTC-PERP'). Omit to retrieve a standard multi-asset portfolio mix."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 3,
  "source": "Yahoo Finance, Coinbase Exchange, Hyperliquid",
  "results": {
   "BTC": {
    "name": "BTC / USD",
    "type": "crypto_spot",
    "price": 64661.88,
    "low24h": 64491.88,
    "high24h": 66774.05,
    "currency": "USD",
    "exchange": "Coinbase",
    "change24h": -2.68,
    "volume24h": 6332.98
   },
   "AAPL": {
    "name": "Apple Inc.",
    "type": "stock",
    "price": 299.24,
    "currency": "USD",
    "exchange": "NasdaqGS",
    "change24h": 0.95,
    "volume24h": 37342135
   },
   "SOL-PERP": {
    "name": "SOL Perpetual Futures",
    "type": "crypto_perp",
    "price": 71.92,
    "currency": "USD",
    "exchange": "Hyperliquid",
    "change24h": -3.48,
    "markPrice": 71.94,
    "volume24h": 172708433.51,
    "fundingRate": -0.000012,
    "openInterest": 3861735.27,
    "fundingRateAnnualized": -10.93
   }
  },
  "processingTime": "240ms"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vibe-springs-market-data-api-46911d56/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vibesprings.net](https://www.zero.xyz/host/vibesprings.net/llms.txt)
