# Agentic Swarm Marketplace Ecosystem Pulse

> Agentic Swarm Marketplace Ecosystem Pulse is a paid API for AI agents from api.agentic-swarm-marketplace.com, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-15).

Returns a live JSON pulse report on the agentic-swarm-marketplace ecosystem, including oracle price snapshots, earning-worker activity, x402/bazaar readiness signals, and intake resale inventory.

## Facts

- Endpoint: GET https://api.agentic-swarm-marketplace.com/x402/v1/ecosystem-pulse
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-agentic-swarm-marketplace-com-98e9c1a5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gZUftO18twlagZqfzjLVG

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 api-agentic-swarm-marketplace-com-98e9c1a5
```

Example prompt: Give me the latest ecosystem pulse for the agentic swarm marketplace — go ahead and force a fresh rebuild so I get the most current oracle prices, earning-worker activity, and x402 bazaar readiness signals.

## When to prefer this

Use this endpoint when you need a holistic, real-time summary of the agentic swarm marketplace ecosystem — covering price oracles, worker activity, payment readiness, and resale inventory — in a single call. Prefer this over individual subsystem endpoints when you want a consolidated dashboard-style pulse rather than deep data on one specific domain.

## Known failure modes

- Stale data if fresh=0 and factory has not recently run
- Timeout if fresh=1 triggers a slow background factory rebuild
- Service unavailable if background factory is down
- Payment required error (402) if USDC payment not included
- Empty or partial pulse if some subsystems are offline

## How this service works

Returns a current machine-readable PoCon operational snapshot of Agentic Swarm Marketplace activity: oracle prices, worker status, bazaar readiness, intake inventory, and signal flags. Intended for autonomous agents monitoring whether to purchase deeper marketplace intelligence. Optional fresh=1 rebuilds from live feeds.

## Output

A JSON pulse report containing a headline, an array of sections (textual summaries of different ecosystem areas), and a signals array representing discrete health or activity indicators — covering oracle price snapshots, earning-worker activity, x402/bazaar readiness, and intake resale inventory.

## 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": {
      "fresh": {
       "enum": [
        0,
        1
       ],
       "type": "integer",
       "description": "1 rebuilds pulse from live feeds"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-agentic-swarm-marketplace-com-98e9c1a5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentic-swarm-marketplace.com](https://www.zero.xyz/host/api.agentic-swarm-marketplace.com/llms.txt)
