# Oblique Markets Bazaar Pulse

> Oblique Markets Bazaar Pulse is a paid API for AI agents from oblique.markets, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns a live market pulse snapshot of the x402 Bazaar: trending services, call volumes, and new listings derived from daily full-catalogue snapshots.

## Facts

- Endpoint: GET https://oblique.markets/api/v1/paid/bazaar-pulse
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oblique-markets-bazaar-pulse-ba601d16
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SaMnGDLb3BP0wKjDJ__GW

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 oblique-markets-bazaar-pulse-ba601d16
```

Example prompt: What's the current market pulse on the x402 Bazaar — show me which services are trending, their call volumes, and any new listings that have appeared recently.

## When to prefer this

Choose this endpoint when you need a broad market-level view of the x402 Bazaar ecosystem — trending services, usage volume rankings, and new listings — rather than details about a specific API. It is ideal for discovery workflows, competitive intelligence, and monitoring the health and activity of the x402 paid-API marketplace.

## Known failure modes

- Payment required (402): request not accompanied by valid x402 micropayment of $0.001 USDC
- Snapshot data lag: underlying data is derived from daily snapshots so real-time granularity is limited
- Empty or sparse results if the Bazaar has low activity during the snapshot window
- Service unavailable (503) if the Oblique Markets backend is down

## How this service works

Live x402 Bazaar market pulse: trending services, call volumes, new listings, and catalog changes from daily full-catalog snapshots. Machine-readable JSON for agent-market research

## Output

A market pulse report for the x402 Bazaar including trending services ranked by popularity, current and historical call volumes, and newly listed services derived from full daily catalogue snapshots.

## 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",
   "properties": {
    "as_of": {
     "type": "string"
    },
    "totals": {
     "type": "object",
     "properties": {
      "sellers": {
       "type": "integer"
      },
      "calls_30d": {
       "type": "integer"
      },
      "resources": {
       "type": "integer"
      }
     }
    },
    "networks": {
     "type": "array",
     "items": {
      "type": "string"
     }
    },
    "generated_at": {
     "type": "string"
    },
    "top_services": {
     "type": "array",
     "items": {
      "type": "object",
      "properties": {
       "name": {
        "type": "string"
       },
       "listings": {
        "type": "integer"
       },
       "calls_30d": {
        "type": "integer"
       },
       "payers_30d": {
        "type": "integer"
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oblique-markets-bazaar-pulse-ba601d16/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oblique.markets](https://www.zero.xyz/host/oblique.markets/llms.txt)
