# beyourspace CSV Requirements Normalizer

> beyourspace CSV Requirements Normalizer is a paid API for AI agents from api.beyourspace.es, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-18).

Cleans a CSV of requirements, removes duplicates, and returns structured JSON with normalized section, text, and priority columns.

## Facts

- Endpoint: POST https://api.beyourspace.es/v1/normalizar-requisitos-csv
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-18
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/beyourspace-csv-requirements-normalizer-cf8cb11d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Fv8e2T0YdLst5UpCrDZzh

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 beyourspace-csv-requirements-normalizer-cf8cb11d -d '<json body>'
```

Example prompt: I have a CSV file of job requirements with duplicates and inconsistent formatting — can you clean it up, remove duplicates, and give me back a JSON with normalized section, text, and priority columns?

## When to prefer this

Choose this endpoint when you need to clean, deduplicate, and normalize a CSV of requirements into a structured JSON format with section, text, and priority fields — particularly in HR, ATS, procurement, or product management workflows where raw requirement data is messy or redundant.

## Known failure modes

- Malformed or unparseable CSV returns an error response
- Missing required columns (section, text, priority) may cause a processing failure
- Empty CSV body results in an empty or error JSON response
- CSV with encoding issues may produce garbled output or an error
- Very large CSV files may time out or be rejected

## How this service works

Endpoints de pago por uso para extraer datos de texto, leer páginas públicas y transformar CSV en JSON normalizado. Sin cuentas ni permanencia, con esquemas documentados y ejemplos ejecutables.

## Output

A JSON object where each entry contains normalized fields: section (the category or grouping), text (the cleaned requirement description), and priority (a normalized priority value). Duplicate rows are removed and column values are standardized.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/beyourspace-csv-requirements-normalizer-cf8cb11d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.beyourspace.es](https://www.zero.xyz/host/api.beyourspace.es/llms.txt)
