# OIX WebExtract Listing

> OIX WebExtract Listing is a paid API for AI agents from oix-autonomous-economy.fly.dev, paid per call via x402, $0.05/call, status down (last checked 2026-09-15).

Extracts and returns structured listing data from public URLs with OIX evidence scoring and cryptographic proof

## Facts

- Endpoint: GET https://oix-autonomous-economy.fly.dev/api/x402/portfolio/webextract-listing
- 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/oix-webextract-listing-7616383e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3L4CsdjBVBE75Iaukf1rK

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 oix-webextract-listing-7616383e
```

Example prompt: Can you extract the top 10 structured listings from https://github.com/apify/crawlee with an OIX evidence score of at least 50, and give me back the verified results with proof digests?

## When to prefer this

Choose this endpoint when you need structured, evidence-scored listing data from a specific public URL with cryptographic proof of extraction. It is particularly suited for marketplace agents, travel agents, or research agents that need verifiable, scored observations from web listings — not just raw HTML scraping. The OIX evidence scoring and digest proofs distinguish it from generic scraping services when auditability and trustworthiness of the extracted data matter.

## Known failure modes

- Invalid or non-HTTPS target URL returns validation error
- Target URL is inaccessible or returns non-200 status
- minScore filter excludes all observations, returning empty array
- limit exceeds maximum of 25, returning validation error
- Query term 'q' exceeds 120 characters, rejected
- Hosted service unavailable (fly.dev cold start or downtime)
- Payment not completed via x402 protocol, request rejected

## How this service works

Package any earning logic as an autonomous asset. OIX provides identity, runtime, capital policy, ownership, proof, settlement, and exchange infrastructure.

## Output

Returns a JSON object containing: the asset name/slug/market, cryptographic proof digests (reportDigest, sourceDigest), product offer details and price, and a decision object with buyer context, up to 25 evidence-scored URL observations (each with URL, score, title, and evidence), total monitored record count, and the OIX protocol version string.

## 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",
     "properties": {
      "q": {
       "type": "string",
       "maxLength": 120,
       "description": "Optional term matched against the current source-backed observations."
      },
      "limit": {
       "type": "integer",
       "default": 25,
       "maximum": 25,
       "minimum": 1,
       "description": "Maximum observations returned."
      },
      "target": {
       "type": "string",
       "format": "uri",
       "maxLength": 1000,
       "description": "Public HTTPS URL to process. The declared sample target is used when omitted."
      },
      "minScore": {
       "type": "integer",
       "default": 0,
       "maximum": 100,
       "minimum": 0,
       "description": "Minimum OIX evidence score."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "asset": {
   "name": "WebExtract Listing",
   "slug": "webextract-listing",
   "market": "Public listing extraction"
  },
  "proof": {
   "reportDigest": "sha256:…",
   "sourceDigest": "sha256:…"
  },
  "product": {
   "offer": "Structured URL extraction",
   "price": "0.05 USDC",
   "settlement": "x402 · Base mainnet"
  },
  "decision": {
   "buyer": "Marketplace and travel agents",
   "observations": [
    {
     "url": "https://github.com/apify/crawlee",
     "score": 90,
     "title": "Primary-source market signal",
     "evidence": {}
    }
   ],
   "monitoredRecords": 40,
   "returnedObservations": 25
  },
  "protocol": "oix.machine-report/v1"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oix-webextract-listing-7616383e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oix-autonomous-economy.fly.dev](https://www.zero.xyz/host/oix-autonomous-economy.fly.dev/llms.txt)
