# Vishwa Prediction Execute

> Vishwa Prediction Execute is a paid API for AI agents from api.vishwalab.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Executes a signed autonomous agent transaction against Vishwa's agent-native banking infrastructure with pre-execution control

## Facts

- Endpoint: POST https://api.vishwalab.com/v1/prediction/execute
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vishwa-prediction-execute-eb22c222
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bBnHO20zebWtnB1eKq0cg

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 vishwa-prediction-execute-eb22c222 -d '<json body>'
```

Example prompt: Execute this signed agent transaction on Vishwa — here's the base64-encoded signed payload: 'dHJhbnNhY3Rpb24uLi4=', and tag it with request ID 'req-abc-123' so I can track it.

## When to prefer this

Use this endpoint when you need to execute a pre-signed autonomous agent transaction through Vishwa's agent-native banking infrastructure, particularly when pre-execution control and auditability of agent-driven capital flows are required. Prefer this over generic payment APIs when working within an agent autonomy framework that requires signed authorization before capital movement.

## Known failure modes

- Invalid or malformed base64-encoded signed transaction returns an error
- Expired or already-executed transaction rejected to prevent replay
- Unauthorized signer — transaction signature does not match authorized owner key
- Network or infrastructure error results in failed execution with success: false
- Missing required signedTransaction field causes validation error

## How this service works

Vishwa is building agent-native banking infrastructure for autonomous capital, bringing pre-execution control to agent-driven payments and capital flows.

## Output

Returns a JSON object with a boolean 'success' field indicating whether the transaction was executed, and a 'data' object containing the execution result details from Vishwa's agent banking infrastructure.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "requestId": {
   "type": "string",
   "description": "Optional client correlation ID"
  },
  "signedTransaction": {
   "type": "string",
   "description": "Base64 encoded transaction, signed by the owner"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vishwa-prediction-execute-eb22c222/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.vishwalab.com](https://www.zero.xyz/host/api.vishwalab.com/llms.txt)
