# RiskPulse Supply Chain Risk Analyzer

> RiskPulse Supply Chain Risk Analyzer is a paid API for AI agents from riskpulse-five.vercel.app, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-15).

Analyzes supply chain risk for a given input, returning concentration risk metrics, disruption scenarios, and a diversification strategy.

## Facts

- Endpoint: GET https://riskpulse-five.vercel.app/api/risk/supply
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/riskpulse-supply-chain-risk-analyzer-097bc82e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iPUS5wO8UhRkobpAd7IFT

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 riskpulse-supply-chain-risk-analyzer-097bc82e
```

Example prompt: Can you run a supply chain risk analysis on our electronics components sourcing — we're heavily concentrated in Southeast Asia and I want to see the concentration risk score, what disruption scenarios we might face, and what a diversification strategy would look like?

## When to prefer this

Use this endpoint when an agent needs structured supply chain risk intelligence — specifically concentration risk quantification, disruption scenario modeling, and actionable diversification recommendations — rather than general country risk or business environment data. Prefer this over the country risk or business risk sibling endpoints when the focus is explicitly on supplier networks, sourcing strategy, and supply chain resilience rather than macroeconomic or regulatory environment.

## Known failure modes

- Missing or invalid input parameters returns an error with details on required fields
- Unsupported region or industry type may return a partial result or validation error
- Payment failure (x402) blocks access and returns a 402 status
- Overly broad or ambiguous supply chain inputs may yield generic rather than targeted risk analysis

## How this service works

Supply chain risk, sourcing concentration risk, disruption exposure for a product or country worldwide. Returns concentration risk, disruption scenarios, and a diversification strategy.

## Output

Returns a structured risk report including concentration risk metrics (identifying over-reliance on specific suppliers, regions, or commodities), a set of modeled disruption scenarios (e.g. geopolitical events, natural disasters, trade restrictions), and a recommended diversification strategy to mitigate identified risks.

## 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": [
      "product"
     ],
     "properties": {
      "lang": {
       "type": "string",
       "description": "Response language (default en)"
      },
      "country": {
       "type": "string",
       "description": "Country"
      },
      "product": {
       "type": "string",
       "description": "Product or component"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/riskpulse-supply-chain-risk-analyzer-097bc82e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from riskpulse-five.vercel.app](https://www.zero.xyz/host/riskpulse-five.vercel.app/llms.txt)
