# Wisely Enterprises LLC - Precious Metal Risk Score

> Wisely Enterprises LLC - Precious Metal Risk Score is a paid API for AI agents from payments.wiselyenterprisesllc.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Scores the financial risk of a precious metal investment candidate and returns risk flags, a numeric risk score, and an actionable recommendation.

## Facts

- Endpoint: POST https://payments.wiselyenterprisesllc.com/paid/precious-metal-risk-score
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/wisely-enterprises-llc-precious-metal-risk-score-82ee672c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_m294W0O3y5F0qB3Ehc16o

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 wisely-enterprises-llc-precious-metal-risk-score-82ee672c -d '<json body>'
```

Example prompt: Can you run a precious metal risk score on this gold bullion investment candidate I'm considering — I want to see the risk score, any red flags, and whether it's worth researching further?

## When to prefer this

Use this endpoint when an AI agent needs a structured, numeric risk assessment for a precious metal investment candidate before proceeding with a purchase or recommendation. Prefer over generic financial APIs when precious-metals-specific risk flags and a scored recommendation are required, and when x402 micropayment infrastructure is already in use.

## Known failure modes

- Payment not confirmed — 402 returned if x402 payment header is missing or invalid
- Invalid input entity — unrecognized metal type or malformed candidate data returns 400
- Upstream scoring model unavailable — 503 service error with no risk data
- Insufficient USDC balance to complete $0.25 per-call payment
- Timeout if scoring computation exceeds threshold

## How this service works

Hosted x402 endpoints and MCP payment infrastructure for autonomous agents: quote, pay, invoke, stream progress, and receive receipts.

## Output

Returns a JSON object with: ok (boolean), riskScore (integer 0-100), riskFlags (array of identified risk issues), paidResource (endpoint name confirming the paid call), and recommendation (plain-language advice such as 'research candidate').

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {
      "notes": {
       "type": "string"
      },
      "title": {
       "type": "string"
      },
      "weightGrams": {
       "type": "number"
      },
      "purityPercent": {
       "type": "number"
      },
      "localSilverSellBackPerTroyOz": {
       "type": "number"
      }
     },
     "additionalProperties": true
    },
    "type": {
     "const": "http"
    },
    "method": {
     "const": "POST"
    },
    "bodyType": {
     "const": "json"
    },
    "queryParams": {
     "type": "object",
     "additionalProperties": true
    }
   },
   "additionalProperties": true
  },
  "output": {
   "type": "object",
   "required": [
    "type",
    "example"
   ],
   "properties": {
    "type": {
     "const": "json"
    },
    "example": {
     "type": "object",
     "additionalProperties": true
    }
   },
   "additionalProperties": true
  }
 },
 "additionalProperties": true
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "riskFlags": [],
  "riskScore": 40,
  "paidResource": "precious-metal-risk-score",
  "recommendation": "research candidate"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/wisely-enterprises-llc-precious-metal-risk-score-82ee672c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payments.wiselyenterprisesllc.com](https://www.zero.xyz/host/payments.wiselyenterprisesllc.com/llms.txt)
