# Procurement Readiness Analyzer

> Procurement Readiness Analyzer is a paid API for AI agents from api.agentic-swarm-marketplace.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Analyzes technology purchase requests, RFQs, bills of materials, or procurement requirements and returns a machine-readable readiness score with missing specs, ambiguities, commercial risks, and recommended next actions.

## Facts

- Endpoint: GET https://api.agentic-swarm-marketplace.com/x402/v1/procurement-readiness
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/procurement-readiness-analyzer-e7a50a1f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JOP4a24xgmPz-m_t4qnNX

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 procurement-readiness-analyzer-e7a50a1f
```

Example prompt: Can you check whether this tech procurement request is ready to go — here's the requirements text: 'We need 50 enterprise laptops with TPM 2.0, 16GB RAM, Windows 11 Pro, delivery to the Pacific Northwest by Q3 for a commercial buyer' — flag any missing specs, ambiguities, or commercial risks before I send it to our reseller.

## When to prefer this

Choose this endpoint when an autonomous purchasing agent, VAR, MSP, or procurement team needs to validate a technology procurement request before sending it to suppliers or distributors — especially when the requirement may be incomplete, ambiguous, or commercially risky. Prefer over generic LLM analysis when you need a structured, machine-readable readiness score with actionable gap identification rather than freeform text feedback.

## Known failure modes

- Missing required 'requirements_text' parameter returns a validation error
- Extremely short or vague requirements text may yield a low readiness score with generic missing-spec flags
- Unsupported buyer_type enum value causes a schema validation error
- If no distributor data is provided, live pricing/inventory claims are not included in output
- Malformed BOM array input may cause parsing failure or incomplete analysis

## How this service works

Analyzes a technology purchase request, RFQ excerpt, bill of materials, or procurement requirement and returns a machine-readable readiness score, missing specifications, ambiguities, commercial risks, and recommended next actions. Designed for autonomous purchasing agents, VARs, MSPs, resellers, and procurement teams. Does not claim live pricing or inventory unless verified distributor data is explicitly included.

## Output

Returns a machine-readable object containing a procurement readiness score, a list of missing specifications, identified ambiguities in the requirements, commercial risks (e.g. vendor lock-in, underspecified SLAs, compliance gaps), and recommended next actions for the buyer or agent to resolve before proceeding.

## 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",
     "required": [
      "requirements_text"
     ],
     "properties": {
      "bom": {
       "type": "array"
      },
      "buyer_type": {
       "enum": [
        "commercial",
        "government",
        "public",
        "sled",
        "federal"
       ],
       "type": "string"
      },
      "quote_text": {
       "type": "string"
      },
      "required_by": {
       "type": "string"
      },
      "purchase_type": {
       "type": "string"
      },
      "delivery_region": {
       "type": "string"
      },
      "requirements_text": {
       "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/procurement-readiness-analyzer-e7a50a1f/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)
