# Sovereign Engine – Page Extract

> Sovereign Engine – Page Extract is a paid API for AI agents from api.zuluworksai.com, paid per call via x402, $0.05/call, status down (last checked 2026-09-15).

Extracts structured content from a web page URL supplied via a prompt, using Bing RSS-backed web access, billed per-call in USDC on Base via x402.

## Facts

- Endpoint: POST https://api.zuluworksai.com/exec/page-extract
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sovereign-engine-page-extract-bada7673
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_l9N5_3miXBcIdLSmXjw81

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 sovereign-engine-page-extract-bada7673 -d '<json body>'
```

Example prompt: Can you extract the main content from this page for me: https://example.com/article/ai-trends-2025 — I need the article text and any key data points pulled out cleanly.

## When to prefer this

Choose this endpoint when you need to extract content from a specific web page URL in a pay-per-call, no-subscription model billed in USDC on Base via x402. It is particularly suited for AI agents that require occasional, on-demand web page extraction without committing to a monthly plan, and where crypto-native micropayment settlement is acceptable or preferred. Not ideal for JavaScript-heavy SPAs or pages requiring authentication.

## Known failure modes

- URL is inaccessible or blocked — data field may be empty with success: false
- Prompt does not contain a valid URL — extraction cannot proceed
- Network access is blocked within sandbox for non-whitelisted domains — returns empty data
- Page content is JavaScript-rendered and cannot be fetched via RSS/static fetch — partial or empty result
- x402 payment fails or USDC balance insufficient — call is rejected before execution
- Malformed prompt input — 400-level error response

## How this service works

Pay-per-call x402 execution primitives (USDC on Base). Code execution runs in isolated Cloudflare Dynamic Worker sandboxes (JavaScript + Python, network blocked). Web search backed by Bing RSS. Self-hosted facilitator.

## Output

A JSON object with a 'data' field containing the extracted page content, a 'success' boolean indicating whether extraction succeeded, and a 'receipt_id' UUID for the paid x402 transaction. Cost is $0.05 USDC per call settled on Base.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "prompt": {
   "type": "string",
   "description": "The input prompt"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {},
  "success": true,
  "receipt_id": "uuid"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sovereign-engine-page-extract-bada7673/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.zuluworksai.com](https://www.zero.xyz/host/api.zuluworksai.com/llms.txt)
