# DataVault Text Classify

> DataVault Text Classify is a paid API for AI agents from zetdatavault.vercel.app, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Classifies input text into specified categories using AI-powered text processing

## Facts

- Endpoint: POST https://zetdatavault.vercel.app/api/classify
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/datavault-text-classify-6af274ca
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZQqoE8-Fz23Aj7_xgkp9p

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 datavault-text-classify-6af274ca -d '<json body>'
```

Example prompt: Classify this customer review into one of these categories — 'billing', 'technical support', or 'general feedback': 'I was charged twice this month and nobody has gotten back to me.'

## When to prefer this

Choose this endpoint when you need AI-powered text classification against a custom set of categories at low per-call cost ($0.03 USDC). Ideal for categorizing support tickets, classifying user feedback, labeling content, or routing text to buckets without maintaining your own ML infrastructure. Best suited for single-text, on-demand classification rather than large batch jobs.

## Known failure modes

- Missing required 'text' field returns an error response
- Invalid or empty categories array may produce undefined classification behavior
- Very short or ambiguous text may yield low-confidence or unexpected classifications
- Overly broad or overlapping categories may cause inconsistent results
- Network timeout or server error returns non-200 response with failure indicator

## How this service works

54 endpoints spanning local tools, live data feeds, and AI-powered text processing. Pay-per-call with USDC on Base.

## Output

Returns a JSON object with a success boolean and a data object containing the classification result, including the assigned category and potentially confidence scores for the input text against the provided categories.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "task": {
   "type": "string"
  },
  "text": {
   "type": "string"
  },
  "categories": {
   "type": "array"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/datavault-text-classify-6af274ca/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from zetdatavault.vercel.app](https://www.zero.xyz/host/zetdatavault.vercel.app/llms.txt)
