# HivemindOS Agent Catalog Gateway

> HivemindOS Agent Catalog Gateway is a paid API for AI agents from hivemindos-paid-agent-gateway.hivemindos.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns the full HivemindOS commercial service catalog with live pricing, direct x402 purchase endpoints, and request examples for all available agent capabilities.

## Facts

- Endpoint: GET https://hivemindos-paid-agent-gateway.hivemindos.workers.dev/api/x402/catalog
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hivemindos-agent-catalog-gateway-0f6df8ba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nvwpizDk3k5w46LajhZbJ

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 hivemindos-agent-catalog-gateway-0f6df8ba
```

Example prompt: Show me the full HivemindOS agent catalog — I want to see everything available to buy, including crypto research, wallet risk, Reddit customer research, media, and AI models, along with their live prices and the exact endpoints I'd call to use them.

## When to prefer this

Use this endpoint at the start of any HivemindOS-based agent workflow when you need to discover what paid services are available, get current pricing, or find the exact endpoint URLs and request formats for downstream calls. It is the canonical service-discovery entry point for the HivemindOS ecosystem and should be called before attempting to use any specific HivemindOS capability.

## Known failure modes

- Payment not provided or insufficient — returns 402 Payment Required if the $0.01 USDC x402 payment is missing
- Service temporarily unavailable — Cloudflare Worker outage returns 503
- Rate limiting — too many calls in short succession may return 429
- Stale catalog — pricing or endpoint availability may lag behind actual backend changes

## How this service works

HivemindOS service router for agents: one paid call returns the full HivemindOS commercial catalog (crypto research, wallet risk, Reddit customer research, media, models, email) with live pricing plus every direct x402 purchase endpoint and exact request examples. Start here to discover what a HivemindOS agent stack can buy.

## Output

A complete catalog of HivemindOS commercial services available to AI agents, including categories such as crypto research, wallet risk scoring, Reddit customer research, media, AI models, and email. Each entry includes live pricing in USDC, the direct x402 purchase endpoint URL, and concrete request examples so the agent can immediately invoke any listed capability.

## 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",
     "properties": {}
    }
   },
   "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/hivemindos-agent-catalog-gateway-0f6df8ba/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from hivemindos-paid-agent-gateway.hivemindos.workers.dev](https://www.zero.xyz/host/hivemindos-paid-agent-gateway.hivemindos.workers.dev/llms.txt)
