Classify text into categories you define, with a 0-1 score per category
Classify text into categories you define, with a 0-1 score per category. Single-label or multi-label. Clasifica texto en las categorías que tú definas, con puntuación de 0 a 1 por categoría. Admite una sola etiqueta o multietiqueta.
5000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-14
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": "5000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"categorias": [
"soporte",
"ventas",
"spam",
"urgente"
],
"multietiqueta": true,
"texto": "Mi pedido llegó roto y nadie responde mis correos desde hace una semana."
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"confianza": 0.9,
"etiquetas": [
"soporte",
"urgente"
],
"justificacion": "Reclamación de producto dañado sin respuesta del vendedor.",
"puntuaciones": [
{
"categoria": "soporte",
"score": 0.95
},
{
"categoria": "urgente",
"score": 0.82
},
{
"categoria": "ventas",
"score": 0.05
},
{
"categoria": "spam",
"score": 0.01
}
],
"uso": {
"coste_estimado_usd": 0.00016856,
"modelo": "deepseek-flash",
"tokens_entrada": 236,
"tokens_entrada_cacheados": 128,
"tokens_salida": 180
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"categorias": {
"description": "Categorías candidatas, ej. ['spam','urgente','soporte','ventas'].",
"items": {
"type": "string"
},
"maxItems": 20,
"minItems": 2,
"title": "Categorias",
"type": "array"
},
"multietiqueta": {
"default": false,
"description": "true permite varias categorías a la vez; false elige una.",
"title": "Multietiqueta",
"type": "boolean"
},
"profundo": {
"default": false,
"title": "Profundo",
"type": "boolean"
},
"texto": {
"maxLength": 60000,
"minLength": 1,
"title": "Texto",
"type": "string"
}
},
"required": [
"texto",
"categorias"
],
"title": "PeticionClasificacion",
"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": {
"confianza": {
"maximum": 1,
"minimum": 0,
"title": "Confianza",
"type": "number"
},
"etiquetas": {
"items": {
"type": "string"
},
"title": "Etiquetas",
"type": "array"
},
"justificacion": {
"title": "Justificacion",
"type": "string"
},
"puntuaciones": {
"items": {
"properties": {
"categoria": {
"title": "Categoria",
"type": "string"
},
"score": {
"maximum": 1,
"minimum": 0,
"title": "Score",
"type": "number"
}
},
"required": [
"categoria",
"score"
],
"title": "Puntuacion",
"type": "object"
},
"title": "Puntuaciones",
"type": "array"
},
"uso": {
"additionalProperties": true,
"title": "Uso",
"type": "object"
}
},
"required": [
"etiquetas",
"puntuaciones",
"confianza",
"justificacion",
"uso"
],
"title": "RespuestaClasificacion",
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://agente.revenuerecoveryai.app/v1/clasificacion" # -> 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/clasificacion");
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/clasificacion")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/5322.json, and this resource appears in /discovery/resources and /discovery/search.