# Vibesprings Bazaar Category Trends

> Vibesprings Bazaar Category Trends is a paid API for AI agents from vibesprings.net, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-16).

Fetches historical metrics, active listing share, price distribution, and call volume momentum for a specific Bazaar service tag over a snapshot series

## Facts

- Endpoint: GET https://vibesprings.net/api/trends/category
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vibesprings-bazaar-category-trends-c1ca92ee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_03YVGs7oOFA-ZszRPn-h_

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 vibesprings-bazaar-category-trends-c1ca92ee
```

Example prompt: Pull the last 14 snapshots of Bazaar trend data for the 'weather' service tag — I want to see how active listings, price distribution, and call volume have been moving.

## When to prefer this

Use this endpoint when you need time-series trend intelligence about a specific Bazaar API service category — particularly for tracking listing momentum, price evolution, and call volume growth. Prefer this over generic search endpoints when you need historical snapshots rather than a point-in-time listing query.

## Known failure modes

- Missing required 'tag' query parameter returns validation error
- Window value outside 7–30 range may return error or be clamped to defaults
- Unknown or misspelled tag name may return empty snapshot array
- Payment not processed (402) if x402 payment header is missing or insufficient
- Rate limiting or network timeout on slow snapshot computation

## How this service works

Fetches historical metrics, active listings share, price distribution, and call volume momentum for a specific Bazaar service tag over a snapshot series.

## Output

Returns a time-series snapshot array for the specified Bazaar tag covering: active listing share percentage, price distribution buckets, call volume momentum indicators, and historical metric deltas across the requested snapshot window (7–30 periods).

## 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": [
      "tag"
     ],
     "properties": {
      "tag": {
       "type": "string",
       "description": "Bazaar tag or category name to analyze"
      },
      "window": {
       "type": "integer",
       "description": "Number of snapshot dates to trace (7-30, default 7)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "tag": "weather",
  "series": [],
  "window": 7,
  "current": {
   "date": "2026-07-03",
   "listings": 15,
   "priceMin": 0.001,
   "priceP90": 0.02,
   "totalCalls": 12000,
   "priceMedian": 0.005,
   "totalPayers": 450,
   "activeListings": 12
  },
  "momentum": {
   "callsDelta": 450,
   "payersDelta": 12,
   "windowOverWindow": 1.05
  },
  "processingTime": "45ms",
  "pricingGuidance": {
   "p90": 0.02,
   "medianActivePrice": 0.005
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vibesprings-bazaar-category-trends-c1ca92ee/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)
