{
  "x402Version": 2,
  "id": 5324,
  "slug": "5324",
  "resource": "https://agente.revenuerecoveryai.app/v1/web/brief",
  "description": "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.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0x464374fB066F08273740e99Ad5c07B92d8aC665F",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "50000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "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"
      }
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "agente.revenuerecoveryai.app",
  "lastUpdated": "2026-09-18T18:37:25.535Z",
  "quality": {
    "calls30d": 11,
    "uniquePayers30d": 1,
    "lastCalledAt": "2026-09-18T18:38:20.121Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "agente.revenuerecoveryai.app",
    "manifest_name": "agente.revenuerecoveryai.app",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}