ToolAssay

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.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
635 msmedian answer time
$0.005listed price per call
$0.005price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://agente.revenuerecoveryai.app/v1/clasificacion

CategoryEverything else
Provider hostagente.revenuerecoveryai.app
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days1 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.005 635 ms

Example input (from the provider)

{
  "body": {
    "categorias": [
      "soporte",
      "ventas",
      "spam",
      "urgente"
    ],
    "multietiqueta": true,
    "texto": "Mi pedido lleg\u00f3 roto y nadie responde mis correos desde hace una semana."
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "properties": {
            "categorias": {
              "description": "Categor\u00edas 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\u00edas 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"
}

This page as JSON