# Agentic Swarm Marketplace – Technology Product Search

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

Searches a normalized catalog of technology products (cybersecurity, cloud, SaaS) and returns procurement-ready candidates with catalog, estimated, and quoted pricing distinctions for LCG procurement workflows.

## Facts

- Endpoint: GET https://api.agentic-swarm-marketplace.com/x402/v1/commerce/product-search
- Price: $0.11/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentic-swarm-marketplace-technology-product-search-8e8d5a9d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Tqn1B3Qu7rnPq7uZo8q5-

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 agentic-swarm-marketplace-technology-product-search-8e8d5a9d
```

Example prompt: Search the technology product catalog for enterprise endpoint detection and response (EDR) cybersecurity solutions so I can evaluate procurement options with their catalog and estimated pricing.

## When to prefer this

Choose this endpoint when an AI agent needs to discover and shortlist technology products (cybersecurity, cloud, SaaS) with normalized pricing tiers for a structured procurement or RFQ workflow. It is especially useful when the user needs to distinguish catalog vs estimated vs quoted prices in a single call. Prefer this over generic web search when structured, machine-readable product data is required for downstream procurement processing.

## Known failure modes

- Missing or empty query and category parameters resulting in no matches or an error
- Demo catalog limitations — products returned may not reflect real-world inventory or live distributor pricing
- Category filter mismatch returns empty result set if category string does not match catalog taxonomy
- Payment failure (x402 protocol) prevents the call from completing
- Rate limiting or upstream timeout returns no results

## How this service works

Returns normalized technology product candidates for LCG procurement workflows (cybersecurity, cloud, SaaS). Distinguishes catalog vs estimated vs quoted prices. Demo catalog seeded for tests — not live distributor inventory.

## Output

Returns a list of normalized technology product candidates matching the search query and/or category filter. Each result distinguishes between catalog prices, estimated prices, and quoted prices. The catalog is demo-seeded for testing and does not reflect live distributor inventory. Results are structured for use in LCG (large category government or enterprise) procurement workflows.

## 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": {
      "q": {
       "type": "string"
      },
      "category": {
       "type": "string"
      }
     }
    }
   },
   "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/agentic-swarm-marketplace-technology-product-search-8e8d5a9d/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)
