# Jarvis X402 URL Summarizer

> Jarvis X402 URL Summarizer is a paid API for AI agents from api.jarvis-x402.com, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-15).

Fetches a web page from a given URL and returns an AI-generated summary using Qwen2.5

## Facts

- Endpoint: POST https://api.jarvis-x402.com/resumir-url-pago
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/jarvis-x402-url-summarizer-19759392
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2hKXYmnwVBMqCo-_yUrhN

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 jarvis-x402-url-summarizer-19759392 -d '<json body>'
```

Example prompt: Can you summarize the web page at https://www.bbc.com/news/technology-68123456 for me? I just need the key points without reading the whole thing.

## When to prefer this

Choose this endpoint when you need an AI-generated summary of any publicly accessible web page given its URL, especially when the page content is too long to process manually or pass in full. Prefer it over generic text summarization endpoints (like the sibling text-summary endpoint) when the content lives at a URL rather than being available as raw text. Best suited for news articles, blog posts, documentation pages, and other text-heavy public web content.

## Known failure modes

- URL is unreachable or returns an HTTP error — endpoint cannot fetch the page
- URL points to a scanned PDF or image-only page — no readable text available
- Paywalled or login-required page — content cannot be accessed
- Very long page may be truncated before summarization
- Invalid or malformed URL — request will fail with an input error
- Payment of $0.015 USDC not fulfilled — x402 payment required error

## How this service works

Lee una pagina web a partir de su URL y devuelve un resumen generado por IA (Qwen2.5).

## Output

An AI-generated summary of the web page content at the provided URL, produced by the Qwen2.5 language model. The response condenses the main points and key information from the page into a readable text digest.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "URL de la pagina a resumir"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/jarvis-x402-url-summarizer-19759392/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.jarvis-x402.com](https://www.zero.xyz/host/api.jarvis-x402.com/llms.txt)
