# beyourspace Onboarding CSV to JSON Converter

> beyourspace Onboarding CSV to JSON Converter is a paid API for AI agents from api.beyourspace.es, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-18).

Accepts a CSV of onboarding email sequences and returns clean, validated, sorted JSON with numeric days, corrected URLs, non-empty subjects, and no duplicates.

## Facts

- Endpoint: POST https://api.beyourspace.es/v1/convierte-onboarding
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-18
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/beyourspace-onboarding-csv-to-json-converter-1b159994
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1eSa5zCrnExfaI3YclvFd

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-onboarding-csv-to-json-converter-1b159994 -d '<json body>'
```

Example prompt: I have a CSV with my product onboarding email sequence — it has columns for day, subject, and URL — can you clean it up, fix any invalid URLs, remove duplicate steps, make sure all days are numeric, and give me back a validated, sorted JSON?

## When to prefer this

Choose this endpoint when you have an onboarding email sequence in CSV format and need it cleaned, validated, and converted to structured JSON in one step — especially when you need day fields normalized to integers, URLs verified, subjects checked for emptiness, and duplicates removed automatically, at a low per-request cost of $0.02.

## Known failure modes

- Malformed CSV structure causes parsing failure and 400 error
- Missing required columns (day, subject, URL) result in validation error
- All rows identified as duplicates returns empty sequence array
- Invalid or unreachable URLs that cannot be corrected are flagged in the response
- Body not sent as valid JSON or form-data causes schema validation failure

## 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 containing the onboarding sequence as a sorted, validated array of steps — each with a numeric day field, a verified non-empty subject, and a corrected URL — with all duplicates removed.

## 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-onboarding-csv-to-json-converter-1b159994/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)
