# AgentWorld SolvScore Tokenized-Stock Collateral Underwriting

> AgentWorld SolvScore Tokenized-Stock Collateral Underwriting is a paid API for AI agents from agentworld.me, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-16).

Performs collateral underwriting for tokenized-stock positions using SolvScore on the Base blockchain, given agent simulation state and economy metrics.

## Facts

- Endpoint: POST https://agentworld.me/api/agentworld/slrb/collateral
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentworld-solvscore-tokenized-stock-collateral-underwriting-4253d4b4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jMKpJ26HbX1vC86GAT6rW

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 agentworld-solvscore-tokenized-stock-collateral-underwriting-4253d4b4 -d '<json body>'
```

Example prompt: Run a SolvScore collateral underwriting check on Base for our current AgentWorld simulation — we have 92 registered agents, a treasury balance of 5000 USDC, and I'll send the live agent roster and economy stats.

## When to prefer this

Choose this endpoint when you need on-chain collateral underwriting for tokenized stock positions within the AgentWorld simulation ecosystem on Base, specifically when you have live agent roster data, economy snapshots, and a USDC treasury balance to submit. It is purpose-built for SolvScore-based risk assessment tied to the AgentWorld agent economy, not for generic DeFi collateral checks or off-chain credit scoring.

## Known failure modes

- Missing or malformed agents array causes validation error
- Invalid economy object structure returns 400 bad request
- Treasury balance in wrong format (non-string) may cause parsing failure
- Insufficient USDC balance (< $0.02) causes x402 payment failure
- Base network congestion may delay underwriting response
- Empty agents list may return degenerate or null score

## How this service works

SolvScore tokenized-stock collateral underwriting on Base

## Output

Returns a SolvScore-based collateral underwriting assessment for tokenized stock positions on the Base blockchain, reflecting the creditworthiness and collateral eligibility of the agent economy given the submitted agent list, economy statistics, treasury balance, and total agent count.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "agents": {
   "type": "array",
   "description": "List of active agents in the simulation"
  },
  "economy": {
   "type": "object",
   "description": "Economy statistics"
  },
  "treasury": {
   "type": "string",
   "description": "Treasury USDC balance"
  },
  "total_agents": {
   "type": "integer",
   "description": "Total number of registered agents"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentworld-solvscore-tokenized-stock-collateral-underwriting-4253d4b4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentworld.me](https://www.zero.xyz/host/agentworld.me/llms.txt)
