mirrored listing x402 eip155:8453

Turn a web page URL into a structured, evidence-backed brief: clean content summary, key p

Turn a web page URL into a structured, evidence-backed brief: clean content summary, key points, named entities, sentiment, and claims each quoted with its evidence and source URL. Convierte una URL en un informe estructurado con evidencia: resumen del contenido, puntos clave, entidades, sentimiento y afirmaciones, cada una con su cita textual y su URL de origen.

Do you run agente.revenuerecoveryai.app? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
50000 (raw units)
price
11
calls / 30d
1
unique payers
2026-09-18
updated

Provider

agente.revenuerecoveryai.app · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x464374fB066F08273740e99Ad5c07B92d8aC665F",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "50000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "body": {
          "idioma": "es",
          "incluir_evidencia": true,
          "url": "https://ejemplo.com/noticia"
        },
        "bodyType": "json",
        "method": "POST",
        "type": "http"
      },
      "output": {
        "example": {
          "claims": [
            {
              "claim": "Las tasas subieron 25 puntos base.",
              "evidence": "subió las tasas 25 puntos base en su reunión de julio",
              "source_url": "https://ejemplo.com/noticia"
            }
          ],
          "entities": [
            {
              "nombre": "banco central",
              "tipo": "organizacion"
            }
          ],
          "key_points": [
            "Subida de 25 pb",
            "Reunión de julio"
          ],
          "language": "es",
          "paginas_procesadas": 1,
          "retrieved_at": "2026-09-14T18:00:00+00:00",
          "sentiment": "neutral",
          "summary": "El banco central subió las tasas 25 puntos base en julio por la inflación persistente en servicios.",
          "title": "El banco central sube las tasas",
          "url": "https://ejemplo.com/noticia",
          "uso": {
            "apify_techo_usd": 0.01,
            "coste_estimado_usd": 0.0004,
            "modelo": "deepseek-flash",
            "profundo": false,
            "tokens_entrada": 1200,
            "tokens_salida": 400
          }
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "body": {
              "properties": {
                "idioma": {
                  "anyOf": [
                    {
                      "type": "string"
                    },
                    {
                      "type": "null"
                    }
                  ],
                  "default": "es",
                  "description": "Idioma de salida (ej. 'es', 'en').",
                  "title": "Idioma"
                },
                "incluir_evidencia": {
                  "default": true,
                  "description": "Si es falso, los claims vienen sin citas textuales.",
                  "title": "Incluir Evidencia",
                  "type": "boolean"
                },
                "url": {
                  "description": "URL pública a procesar.",
                  "maxLength": 2048,
                  "title": "Url",
                  "type": "string"
                }
              },
              "required": [
                "url"
              ],
              "title": "PeticionWebBrief",
              "type": "object"
            },
            "bodyType": {
              "enum": [
                "json",
                "form-data",
                "text"
              ],
              "type": "string"
            },
            "method": {
              "enum": [
                "POST",
                "PUT",
                "PATCH"
              ],
              "type": "string"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method",
            "bodyType",
            "body"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "example": {
              "properties": {
                "claims": {
                  "items": {
                    "properties": {
                      "claim": {
                        "description": "Afirmación extraída del contenido.",
                        "title": "Claim",
                        "type": "string"
                      },
                      "evidence": {
                        "description": "Cita textual que la respalda.",
                        "title": "Evidence",
                        "type": "string"
                      },
                      "source_url": {
                        "description": "URL de donde salió la cita.",
                        "title": "Source Url",
                        "type": "string"
                      }
                    },
                    "required": [
                      "claim",
                      "evidence",
                      "source_url"
                    ],
                    "title": "ClaimEvidenciado",
                    "type": "object"
                  },
                  "title": "Claims",
                  "type": "array"
                },
                "entities": {
                  "items": {
                    "properties": {
                      "nombre": {
                        "title": "Nombre",
                        "type": "string"
                      },
                      "tipo": {
                        "description": "persona | organizacion | lugar | producto | fecha | otro",
                        "title": "Tipo",
                        "type": "string"
                      }
                    },
                    "required": [
                      "nombre",
                      "tipo"
                    ],
                    "title": "EntidadBrief",
                    "type": "object"
                  },
                  "title": "Entities",
                  "type": "array"
                },
                "key_points": {
                  "items": {
                    "type": "string"
                  },
                  "title": "Key Points",
                  "type": "array"
                },
                "language": {
                  "title": "Language",
                  "type": "string"
                },
                "paginas_procesadas": {
                  "title": "Paginas Procesadas",
                  "type": "integer"
                },
                "retrieved_at": {
                  "title": "Retrieved At",
                  "type": "string"
                },
                "sentiment": {
                  "enum": [
                    "positivo",
                    "neutral",
                    "negativo"
                  ],
                  "title": "Sentiment",
                  "type": "string"
                },
                "summary": {
                  "title": "Summary",
                  "type": "string"
                },
                "title": {
                  "title": "Title",
                  "type": "string"
                },
                "url": {
                  "title": "Url",
                  "type": "string"
                },
                "uso": {
                  "additionalProperties": true,
                  "title": "Uso",
                  "type": "object"
                }
              },
              "required": [
                "url",
                "title",
                "language",
                "summary",
                "key_points",
                "entities",
                "claims",
                "sentiment",
                "retrieved_at",
                "paginas_procesadas",
                "uso"
              ],
              "title": "RespuestaWebBrief",
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://agente.revenuerecoveryai.app/v1/web/brief"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://agente.revenuerecoveryai.app/v1/web/brief");
if (res.status === 402) {
  const { accepts } = await res.json();
  // pay one of accepts[] via an x402 client, then retry with the payment header
}

Python

import httpx
res = httpx.get("https://agente.revenuerecoveryai.app/v1/web/brief")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/5324.json, and this resource appears in /discovery/resources and /discovery/search.